From e700810f736e670ba9b1b0108f652ebc224abd20 Mon Sep 17 00:00:00 2001 From: Chris Allbritton Date: Thu, 30 Nov 2023 15:06:44 -0500 Subject: [PATCH] Corrected spellings and fixed a typo --- 5e-macros/utility/v11/Foraging rule (Ranger) | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/5e-macros/utility/v11/Foraging rule (Ranger) b/5e-macros/utility/v11/Foraging rule (Ranger) index a2a4bdc..36f7ccb 100644 --- a/5e-macros/utility/v11/Foraging rule (Ranger) +++ b/5e-macros/utility/v11/Foraging rule (Ranger) @@ -7,14 +7,14 @@ */ const regions = { - "Mountains & Hills [DC 15]": {dc: 15, food: ["Berries", "Fish", "Flowers", "Fruit", "Fungi", "Insects", "Meet", "Nuts", "Plants", "Seeds", "Roots", "Weeds"]}, - "Forest & Jungle [DC 10]": {dc: 10, food: ["Berries", "Fish", "Flowers", "Fruit", "Fungi", "Insects", "Meet", "Nuts", "Plants", "Roots", "Seeds", "Vegetables"]}, - "Desert [DC 20]": {dc: 20, food: ["Insects", "Meet", "Seeds", "Roots", "Weeds"]}, - "Dungeon & Underdark [DC 20]": {dc: 20, food: ["Berries", "Fish", "Flowers", "Fruit", "Fungi", "Meet", "Seeds", "Roots", "Weeds"]}, - "City [DC 15]": {dc: 15, food: ["Flowers", "Insects", "Meet", "Seeds", "Roots", "Rubbish", "Weeds"], note: "Note: the meet probably be bird, cat, dog, or rat"}, - "Artic [DC 20]": {dc: 20, food: ["Fish", "Meet", "Seeds", "Roots", "Weeds"]}, - "Swamp [DC 15]": {dc: 15, food: ["Berries", "Fish", "Flowers", "Fungi", "Insects", "Meet", "Seeds", "Roots", "Weeds"]}, - "Grassland [DC 10]": {dc: 10, food: ["Berries", "Flowers", "Fruit", "Insects", "Meet", "Seeds", "Roots", "Vegetables", "Weeds"]}, + "Mountains & Hills [DC 15]": {dc: 15, food: ["Berries", "Fish", "Flowers", "Fruit", "Fungi", "Insects", "Meat", "Nuts", "Plants", "Seeds", "Roots", "Weeds"]}, + "Forest & Jungle [DC 10]": {dc: 10, food: ["Berries", "Fish", "Flowers", "Fruit", "Fungi", "Insects", "Meat", "Nuts", "Plants", "Roots", "Seeds", "Vegetables"]}, + "Desert [DC 20]": {dc: 20, food: ["Insects", "Meat", "Seeds", "Roots", "Weeds"]}, + "Dungeon & Underdark [DC 20]": {dc: 20, food: ["Berries", "Fish", "Flowers", "Fruit", "Fungi", "Meat", "Seeds", "Roots", "Weeds"]}, + "City [DC 15]": {dc: 15, food: ["Flowers", "Insects", "Meat", "Seeds", "Roots", "Rubbish", "Weeds"], note: "Note: the Meat probably be bird, cat, dog, or rat"}, + "Artic [DC 20]": {dc: 20, food: ["Fish", "Meat", "Seeds", "Roots", "Weeds"]}, + "Swamp [DC 15]": {dc: 15, food: ["Berries", "Fish", "Flowers", "Fungi", "Insects", "Meat", "Seeds", "Roots", "Weeds"]}, + "Grassland [DC 10]": {dc: 10, food: ["Berries", "Flowers", "Fruit", "Insects", "Meat", "Seeds", "Roots", "Vegetables", "Weeds"]}, "Coast [DC 10]": {dc: 10, food: ["Fish", "Fruit", "Mollusks", "Roots", "Seaweed", "Weeds"]} }; @@ -109,6 +109,6 @@ const foodMessage = Object.entries(foodTypes) .join(', '); await ChatMessage.create({content: `You gathered the following types of food: ${foodMessage}`}); if (dialog.region === "City [DC 15]") { - await ChatMessage.create({content: `Note: the meet probably be bird, cat, dog, or rat`}); + await ChatMessage.create({content: `Note: the meat is probably bird, cat, dog, or rat`}); } }