├── packs ├── table.db └── table │ ├── LOCK │ ├── 000041.log │ ├── CURRENT │ ├── 000034.ldb │ ├── 000044.ldb │ ├── 000045.ldb │ ├── 000046.ldb │ ├── 000047.ldb │ ├── MANIFEST-000035 │ ├── LOG │ └── LOG.old ├── 5e └── README.md ├── .gitignore ├── independent_tables ├── README.md ├── wild-magic-surge-table-variant.json ├── wild-magic-surge-table-variant-results.json ├── 100-foraged-foods.json ├── potion_strength.json ├── 100-interesting-prisoners.json ├── inspirations.json ├── 100-npc-jobs.json ├── 100-magic-sword-names.json ├── 100-aquatic-items.json ├── 100-things-in-an-ogres-pockets.json ├── 100-dwarven-clan-names.json ├── 100-things-you-might-wake-up-and-find-missing.json ├── 100-topics-for-a-campfire-story.json ├── 100-titles.json ├── 100-tavern-names.json └── 100-fears-and-phobias.json ├── module.json ├── useful_scripts └── chartopia_extractor.js └── README.md /packs/table.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/table/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/table/000041.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/table/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000035 2 | -------------------------------------------------------------------------------- /5e/README.md: -------------------------------------------------------------------------------- 1 | Tables that require the 5e system to function properly. 2 | -------------------------------------------------------------------------------- /packs/table/000034.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/tables/HEAD/packs/table/000034.ldb -------------------------------------------------------------------------------- /packs/table/000044.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/tables/HEAD/packs/table/000044.ldb -------------------------------------------------------------------------------- /packs/table/000045.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/tables/HEAD/packs/table/000045.ldb -------------------------------------------------------------------------------- /packs/table/000046.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/tables/HEAD/packs/table/000046.ldb -------------------------------------------------------------------------------- /packs/table/000047.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/tables/HEAD/packs/table/000047.ldb -------------------------------------------------------------------------------- /packs/table/MANIFEST-000035: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/tables/HEAD/packs/table/MANIFEST-000035 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS generated files # 2 | ###################### 3 | .DS_Store 4 | .DS_Store? 5 | ._* 6 | .Spotlight-V100 7 | .Trashes 8 | ehthumbs.db 9 | Thumbs.db 10 | -------------------------------------------------------------------------------- /independent_tables/README.md: -------------------------------------------------------------------------------- 1 | List of files that can be used alone or in conjunction with a macro. These files are not necessarily dependent on a specific system or a group of other rollable tables. -------------------------------------------------------------------------------- /independent_tables/wild-magic-surge-table-variant.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Wild Magic Surge Variant", 3 | "img": "icons/svg/d20-grey.svg", 4 | "description": "Cast a spell and roll the dice! (https://www.dandwiki.com/wiki/Wild_Magic_Surge_Table,_Variant_(5e_Variant_Rule))", 5 | "results": [ 6 | { 7 | "_id": "QpA4E523oO2fhCw6", 8 | "type": 1, 9 | "text": "Wild Magic Surge Variant Results", 10 | "weight": 1, 11 | "range": [ 12 | 1, 13 | 1 14 | ], 15 | "drawn": false, 16 | "flags": {}, 17 | "img": "icons/svg/d20-grey.svg", 18 | "collection": "RollTable", 19 | "resultId": "EfHQ4l3tbgZumtCw", 20 | "rangeL": 1, 21 | "rangeH": 1 22 | }, 23 | { 24 | "_id": "oNBb0OVVABkD4RPo", 25 | "type": 0, 26 | "text": "Nothing happens.", 27 | "weight": 1, 28 | "range": [ 29 | 2, 30 | 20 31 | ], 32 | "drawn": false, 33 | "flags": {}, 34 | "img": "icons/svg/d20-black.svg", 35 | "rangeL": 2, 36 | "rangeH": 20 37 | } 38 | ], 39 | "formula": "1d20", 40 | "replacement": true, 41 | "displayRoll": true, 42 | "flags": { 43 | "exportSource": { 44 | "world": "swordcoast-adventures", 45 | "system": "dnd5e", 46 | "coreVersion": "9.245", 47 | "systemVersion": "1.5.7" 48 | } 49 | } 50 | } -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "foundry_community_tables", 3 | "title": "Foundry Community Tables", 4 | "description": "

This is a collection of Tables added by the FoundryVTT Community!

You can add your own tables by making a pull request here: https://github.com/foundry-vtt-community/tables

", 5 | "version": "13.0", 6 | "authors": [ 7 | { 8 | "name": "FoundryVTTCommunity" 9 | } 10 | ], 11 | "packs": [ 12 | { 13 | "name": "community-tables", 14 | "label": "FVTT Community Tables", 15 | "path": "packs/table.db", 16 | "module": "foundry_community_tables", 17 | "type": "RollTable" 18 | } 19 | ], 20 | "url": "https://github.com/foundry-vtt-community/tables", 21 | "manifest": "https://raw.githubusercontent.com/foundry-vtt-community/tables/main/module.json", 22 | "download": "https://github.com/foundry-vtt-community/tables/archive/v13.0.zip", 23 | "bugs": "https://github.com/foundry-vtt-community/tables/issues", 24 | "readme": "https://raw.githubusercontent.com/foundry-vtt-community/tables/main/README.md", 25 | "changelog": "https://github.com/foundry-vtt-community/tables/releases", 26 | "license": "https://raw.githubusercontent.com/foundry-vtt-community/tables/main/LICENSE.md", 27 | "socket": true, 28 | "compatibility": { 29 | "minimum": "13", 30 | "verified": "13" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /independent_tables/wild-magic-surge-table-variant-results.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Wild Magic Surge Variant Results", 3 | "img": "icons/svg/d20-grey.svg", 4 | "description": "Wild Magic Surge Variant Results (https://www.dandwiki.com/wiki/Wild_Magic_Surge_Table,_Variant_(5e_Variant_Rule))", 5 | "results": [ 6 | { 7 | "_id": "dXCUYNypSFH3tF0K", 8 | "type": 1, 9 | "text": "Extreme Wild Magic Surge Variant 1-3", 10 | "weight": 1, 11 | "range": [ 12 | 1, 13 | 3 14 | ], 15 | "drawn": false, 16 | "flags": {}, 17 | "img": "icons/svg/d20-grey.svg", 18 | "collection": "RollTable", 19 | "resultId": "a22jFpVIFWrpGCwO", 20 | "rangeL": 1, 21 | "rangeH": 3 22 | }, 23 | { 24 | "_id": "tnjLYyUoNe1qFaW0", 25 | "type": 1, 26 | "text": "Moderate Wild Magic Surge Variant 4-9", 27 | "collection": "RollTable", 28 | "weight": 1, 29 | "range": [ 30 | 4, 31 | 9 32 | ], 33 | "drawn": false, 34 | "flags": {}, 35 | "img": "icons/svg/d20-grey.svg", 36 | "resultId": "SH6RXESrHidH13GG", 37 | "rangeL": 4, 38 | "rangeH": 9 39 | }, 40 | { 41 | "_id": "ok3sis1huGGE9kW8", 42 | "type": 1, 43 | "text": "Nuisance Wild Magic Surges Variant 10-20", 44 | "collection": "RollTable", 45 | "weight": 1, 46 | "range": [ 47 | 10, 48 | 20 49 | ], 50 | "drawn": false, 51 | "flags": {}, 52 | "img": "icons/svg/d20-grey.svg", 53 | "resultId": "NNlZEcJyx59bkSXy", 54 | "rangeL": 10, 55 | "rangeH": 20 56 | } 57 | ], 58 | "formula": "1d20", 59 | "replacement": true, 60 | "displayRoll": true, 61 | "flags": { 62 | "exportSource": { 63 | "world": "swordcoast-adventures", 64 | "system": "dnd5e", 65 | "coreVersion": "9.245", 66 | "systemVersion": "1.5.7" 67 | } 68 | } 69 | } -------------------------------------------------------------------------------- /packs/table/LOG: -------------------------------------------------------------------------------- 1 | 2025/06/19-12:31:40.727529 315389000 Recovering log #23 2 | 2025/06/19-12:31:40.727939 315389000 Delete type=3 #19 3 | 2025/06/19-12:31:40.727973 315389000 Delete type=0 #23 4 | 2025/06/19-12:34:26.383202 30e2ff000 Level-0 table #38: started 5 | 2025/06/19-12:34:26.392462 30e2ff000 Level-0 table #38: 742049 bytes OK 6 | 2025/06/19-12:34:26.392695 30e2ff000 Delete type=0 #36 7 | 2025/06/19-12:37:11.856156 30e2ff000 Level-0 table #40: started 8 | 2025/06/19-12:37:11.865288 30e2ff000 Level-0 table #40: 703527 bytes OK 9 | 2025/06/19-12:37:11.865514 30e2ff000 Delete type=0 #37 10 | 2025/06/19-12:40:12.215765 30e2ff000 Level-0 table #42: started 11 | 2025/06/19-12:40:12.221289 30e2ff000 Level-0 table #42: 419195 bytes OK 12 | 2025/06/19-12:40:12.221470 30e2ff000 Delete type=0 #39 13 | 2025/06/19-12:40:12.221727 30e2ff000 Manual compaction at level-0 from '!folders!Fh9VreujUJWxarX5' @ 72057594037927935 : 1 .. '!tables.results!zmRYugGqQSK67csZ.zzZRNNz8xoZWeQuw' @ 0 : 0; will stop at '!tables.results!tgpKuxAzuSyY7c3w.zkeE7mqflzFYpOHf' @ 66100 : 1 14 | 2025/06/19-12:40:12.221736 30e2ff000 Compacting 2@0 + 1@1 files 15 | 2025/06/19-12:40:12.226293 30e2ff000 Generated table #43@0: 108 keys, 21938 bytes 16 | 2025/06/19-12:40:12.226317 30e2ff000 Compacted 2@0 + 1@1 files => 21938 bytes 17 | 2025/06/19-12:40:12.226388 30e2ff000 compacted to: files[ 0 1 4 0 0 0 0 ] 18 | 2025/06/19-12:40:12.226491 30e2ff000 Delete type=2 #38 19 | 2025/06/19-12:40:12.226694 30e2ff000 Delete type=2 #42 20 | 2025/06/19-12:40:12.226784 30e2ff000 Delete type=2 #40 21 | 2025/06/19-12:40:12.227208 30e2ff000 Manual compaction at level-0 from '!tables.results!tgpKuxAzuSyY7c3w.zkeE7mqflzFYpOHf' @ 66100 : 1 .. '!tables.results!zmRYugGqQSK67csZ.zzZRNNz8xoZWeQuw' @ 0 : 0; will stop at (end) 22 | 2025/06/19-12:40:12.227383 30e2ff000 Manual compaction at level-1 from '!folders!Fh9VreujUJWxarX5' @ 72057594037927935 : 1 .. '!tables.results!zmRYugGqQSK67csZ.zzZRNNz8xoZWeQuw' @ 0 : 0; will stop at '!tables.results!tgpKuxAzuSyY7c3w.zkeE7mqflzFYpOHf' @ 76782 : 1 23 | 2025/06/19-12:40:12.227390 30e2ff000 Compacting 1@1 + 3@2 files 24 | 2025/06/19-12:40:12.246032 30e2ff000 Generated table #44@1: 6511 keys, 2134354 bytes 25 | 2025/06/19-12:40:12.291205 30e2ff000 Generated table #45@1: 12559 keys, 2152242 bytes 26 | 2025/06/19-12:40:12.307870 30e2ff000 Generated table #46@1: 8733 keys, 2143622 bytes 27 | 2025/06/19-12:40:12.308170 30e2ff000 Generated table #47@1: 13 keys, 3479 bytes 28 | 2025/06/19-12:40:12.308177 30e2ff000 Compacted 1@1 + 3@2 files => 6433697 bytes 29 | 2025/06/19-12:40:12.308241 30e2ff000 compacted to: files[ 0 0 5 0 0 0 0 ] 30 | 2025/06/19-12:40:12.308453 30e2ff000 Delete type=2 #29 31 | 2025/06/19-12:40:12.308707 30e2ff000 Delete type=2 #33 32 | 2025/06/19-12:40:12.308921 30e2ff000 Delete type=2 #31 33 | 2025/06/19-12:40:12.309016 30e2ff000 Delete type=2 #43 34 | 2025/06/19-12:40:12.309333 30e2ff000 Manual compaction at level-1 from '!tables.results!tgpKuxAzuSyY7c3w.zkeE7mqflzFYpOHf' @ 76782 : 1 .. '!tables.results!zmRYugGqQSK67csZ.zzZRNNz8xoZWeQuw' @ 0 : 0; will stop at (end) 35 | -------------------------------------------------------------------------------- /useful_scripts/chartopia_extractor.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Use this script to create an importable json file from Chartopia. 3 | * Author: @Krishmero#1792 4 | * 5 | * How to use this script. 6 | * 1. Find a table you want to extract. IMPORTANT: it must NOT make additional rolls on other tables. 7 | * 2. Open Chrome console window (F12) & go to the Sources Tab -> Snippets -> new snippet and paste this file in there. 8 | * 3. Run snippet (ctrl+Enter for windows). Json file to import will download. 9 | * 4. In foundry, make a new rollable table, then right click it on the sidebar and do an import. 10 | * 5. Import the downloaded file & celebrate. 11 | */ 12 | 13 | (function(console){ 14 | 15 | console.save = function(data, filename){ 16 | 17 | if(!data) { 18 | console.error('Console.save: No data') 19 | return; 20 | } 21 | 22 | if(!filename) filename = 'console.json' 23 | 24 | if(typeof data === "object"){ 25 | data = JSON.stringify(data, undefined, 4) 26 | } 27 | 28 | var blob = new Blob([data], {type: 'text/json'}), 29 | e = document.createEvent('MouseEvents'), 30 | a = document.createElement('a') 31 | 32 | a.download = filename 33 | a.href = window.URL.createObjectURL(blob) 34 | a.dataset.downloadurl = ['text/json', a.download, a.href].join(':') 35 | e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null) 36 | a.dispatchEvent(e) 37 | } 38 | })(console) 39 | 40 | let dialog = document.getElementsByClassName('chart-container')[0]; 41 | let title = dialog.getElementsByTagName('H2')[0].innerText; 42 | let formula = dialog.getElementsByTagName('TH')[0].innerText; 43 | let rows = dialog.getElementsByTagName('TBODY')[0].getElementsByTagName('TR'); 44 | 45 | let jsonData = { 46 | name: title, 47 | description: "", 48 | results: [], 49 | formula, 50 | replacement: true, 51 | displayRolle: true 52 | }; 53 | 54 | for (let row of rows) { 55 | let range; 56 | let weight; 57 | let cells = row.getElementsByTagName('TD'); 58 | 59 | let getNum = cells[0].innerText; 60 | 61 | if (getNum.includes('-')) { 62 | range = getNum.split('-'); 63 | weight = parseInt(range[1]), 10) - parseInt(range[0]), 10) + 1; 64 | } else { 65 | if (Number.isNaN(getNum)) continue; 66 | range = [getNum, getNum]; 67 | weight = 1; 68 | } 69 | 70 | let text = cells[1].innerHTML; 71 | 72 | if (cells[1].getElementsByClassName('corpse').length) { 73 | let resolve = text.match(/\Resolve:\s{(.*?)}<\/span>/gi).map(val => { 74 | let array = val.split("|"); 75 | return array[Math.floor(Math.random()*array.length)]; 76 | }); 77 | } 78 | 79 | if (cells[1].getElementsByClassName('equation').length) { 80 | text = text.replace(/Roll\s/gi, '[['); 81 | text = text.replace(/<\/span>/gi, ']]'); 82 | } 83 | 84 | text = text.replace('\n', ''); 85 | 86 | jsonData.results.push({ 87 | flags: {}, 88 | type: 0, 89 | text, 90 | img: "icons/svg/d20-black.svg", 91 | weight, 92 | range, 93 | drawn: false 94 | }); 95 | }; 96 | console.save(jsonData); 97 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Foundry VTT Tables Repository 2 | 3 | ![Latest Version](https://img.shields.io/badge/dynamic/json.svg?url=https%3A%2F%2Fraw.githubusercontent.com%2Ffoundry-vtt-community%2Ftables%2Fmaster%2Fmodule.json&label=Latest%20Release&prefix=v&query=$.version&colorB=red&style=for-the-badge) 4 | [![Forge Installs](https://img.shields.io/badge/dynamic/json?label=Forge%20Installs&query=package.installs&suffix=%25&url=https%3A%2F%2Fforge-vtt.com%2Fapi%2Fbazaar%2Fpackage%2Ffoundry_community_tables&colorB=006400&style=for-the-badge)](https://forge-vtt.com/bazaar#package=foundry_community_tables) 5 | [![Foundry Hub Endorsements](https://img.shields.io/endpoint?logoColor=white&url=https%3A%2F%2Fwww.foundryvtt-hub.com%2Fwp-json%2Fhubapi%2Fv1%2Fpackage%2Ffoundry_community_tables%2Fshield%2Fendorsements&style=for-the-badge)](https://www.foundryvtt-hub.com/package/foundry_community_tables/) 6 | 7 | Foundry community-contributed tables are noted here and merged into the Foundry Community Tables module for ease of use. 8 | 9 | ## Installation 10 | 11 | ### Usage as a Module 12 | 13 | You can now install this module automatically by specifying the following public module URL : 14 | 15 | `https://raw.githubusercontent.com/foundry-vtt-community/tables/main/module.json` 16 | 17 | As GM go to the **Manage Modules** options menu in your **World Settings** tab then enable the **Foundry Community Tables** module. 18 | 19 | This module adds all of the community tables as a Compendium Packs called **FVTT Community Tables**. 20 | 21 | You can open these packs, right click and click on import the tables you want. 22 | 23 | ### Usage without the Module: 24 | 1. Download the `.json` file to your machine 25 | 2. Create a new rollable table in Foundry 26 | 3. Right click the table in the sidebar and click import 27 | 4. Import your `.json` file and celebrate 28 | 29 | ## FAQ 30 | 31 | ### Why are there no tables from DnDBeyond? 32 | Most of those tables are property of Wizards of the Coast, however there is a wonderful script that you can use to create your own `.json` rollable table file to import into Foundry. See: [useful_scripts/DnDBeyond_extractor.js](useful_scripts/DnDBeyond_extractor.js) 33 | 34 | ### Macros 35 | You may want to utilize macros with these rollable tables. Checkout [the foundry community macro repo](https://github.com/foundry-vtt-community/macros) 36 | 37 | ## Development/Contributing 38 | To clone this repository, along with every table in it, use the following command: 39 | 40 | ``` 41 | git clone --recurse-submodules https://github.com/foundry-vtt-community/tables.git 42 | ``` 43 | 44 | You can make pull requests to add or update tables here: [https://github.com/foundry-vtt-community/tables/pulls](https://github.com/foundry-vtt-community/tables/pulls) 45 | 46 | 1. Navigate to the directory where you wish to add your file 47 | 2. Click on add file at the top 48 | 3. Name your file with a `.json` ending and paste your content and save (add details in the description field of your `.json` file) 49 | 4. Save the file and then open a pull request (GitHub should walk you through these steps) 50 | 51 | If you have *multiple files that should be grouped together* and may use a macro, please create a new directory that houses everything and add a README.md file to the directory 52 | -------------------------------------------------------------------------------- /independent_tables/100-foraged-foods.json: -------------------------------------------------------------------------------- 1 | {"name": "Foraged Foods","description": "One hundred different food items you can find while foraging in the wilderness.Credit: http://dndspeak.com", "permission": {"default": 0},"flags": {},"results": [{"_id": "cVOtvfrK2qWqJcsF","flags": {},"type": 0,"text": "Ramps (Wild Leeks)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [1, 1],"drawn": false},{"_id": "tcYoYRjCqkrwSNx2","flags": {},"type": 0,"text": "River Cane Shoots","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [2, 2],"drawn": false},{"_id": "AjzAsdArPC5jPyrh","flags": {},"type": 0,"text": "Fiddleheads * (Young Ferns)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [3, 3],"drawn": false},{"_id": "9KN4QrafVIiBoKWY","flags": {},"type": 0,"text": "Oyster Mushroom","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [4, 4],"drawn": false},{"_id": "dygA16etG2fEwLUT","flags": {},"type": 0,"text": "Quail Eggs","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [5, 5],"drawn": false},{"_id": "EteFgLEEfBq5U9NH","flags": {},"type": 0,"text": "Catfish","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [6, 6],"drawn": false},{"_id": "aq4KFe9S7GSDAk5g","flags": {},"type": 0,"text": "Queen Anne’s Lace (Wild Carrots)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [7, 7],"drawn": false},{"_id": "pOlfwcxB1kGlXI91","flags": {},"type": 0,"text": "Chicken of the Woods Mushroom","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [8, 8],"drawn": false},{"_id": "GtsnJymCtT6G1YMr","flags": {},"type": 0,"text": "Cattails (near water)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [9, 9],"drawn": false},{"_id": "PyrZzAbx7GsucOnL","flags": {},"type": 0,"text": "BlackBerries","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [10, 10],"drawn": false},{"_id": "QzMGrjUr9UryWOO9","flags": {},"type": 0,"text": "Chicory (Leafy Vegetable)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [11, 11],"drawn": false},{"_id": "RwFEXTh4mYrE4x2b","flags": {},"type": 0,"text": "Paw Paw (Tree Fruit)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [12, 12],"drawn": false},{"_id": "nv2esODvy9kGQptn","flags": {},"type": 0,"text": "Black Walnuts *","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [13, 13],"drawn": false},{"_id": "fuyvmSnwlQa0Iz5A","flags": {},"type": 0,"text": "Acorns *","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [14, 14],"drawn": false},{"_id": "YDgsfpy27dt7di64","flags": {},"type": 0,"text": "Bolete Mushrooms","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [15, 15],"drawn": false},{"_id": "j7Of75pt7iNegBPi","flags": {},"type": 0,"text": "Rose Hips * (Rose Bush Berries)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [16, 16],"drawn": false},{"_id": "DE7r82isLv1gawcL","flags": {},"type": 0,"text": "Crabapple (Tree Fruit)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [17, 17],"drawn": false},{"_id": "xZSjN1K2O47oOoyH","flags": {},"type": 0,"text": "Persimmons (Tree Fruit)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [18, 18],"drawn": false},{"_id": "jW6xL9fQZLxiAVy5","flags": {},"type": 0,"text": "Gingko nuts *","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [19, 19],"drawn": false},{"_id": "3lWkDctdAp2YU6FJ","flags": {},"type": 0,"text": "Chestnuts","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [20, 20],"drawn": false}],"formula": "1d21","replacement": true,"displayRoll": true,"_id": "LBtndZBKXvSvKI9a"} 2 | -------------------------------------------------------------------------------- /independent_tables/potion_strength.json: -------------------------------------------------------------------------------- 1 | { 2 | "_id":"aS9SxiRDo63s9ZYp", 3 | "name":"Potion Strength", 4 | "permission":{ 5 | "default":0 6 | }, 7 | "folder":null, 8 | "sort":300001, 9 | "flags":{ 10 | 11 | }, 12 | "results":[ 13 | { 14 | "id":1, 15 | "flags":{ 16 | 17 | }, 18 | "type":0, 19 | "text":"Regular with slight side effect", 20 | "img":"icons/svg/d20-black.svg", 21 | "resultId":"", 22 | "weight":1, 23 | "range":[ 24 | 1, 25 | 1 26 | ], 27 | "drawn":false 28 | }, 29 | { 30 | "id":2, 31 | "flags":{ 32 | 33 | }, 34 | "type":0, 35 | "text":"Regular with no side effect", 36 | "img":"icons/svg/d20-black.svg", 37 | "resultId":"", 38 | "weight":1, 39 | "range":[ 40 | 2, 41 | 2 42 | ], 43 | "drawn":false 44 | }, 45 | { 46 | "id":3, 47 | "flags":{ 48 | 49 | }, 50 | "type":0, 51 | "text":"Regular with strong side effect", 52 | "img":"icons/svg/d20-black.svg", 53 | "resultId":"", 54 | "weight":1, 55 | "range":[ 56 | 3, 57 | 3 58 | ], 59 | "drawn":false 60 | }, 61 | { 62 | "id":4, 63 | "flags":{ 64 | 65 | }, 66 | "type":0, 67 | "text":"Minor with strong side effect", 68 | "img":"icons/svg/d20-black.svg", 69 | "resultId":"", 70 | "weight":1, 71 | "range":[ 72 | 4, 73 | 4 74 | ], 75 | "drawn":false 76 | }, 77 | { 78 | "id":5, 79 | "flags":{ 80 | 81 | }, 82 | "type":0, 83 | "text":"Minor with a slight side effect", 84 | "img":"icons/svg/d20-black.svg", 85 | "resultId":"", 86 | "weight":1, 87 | "range":[ 88 | 5, 89 | 5 90 | ], 91 | "drawn":false 92 | }, 93 | { 94 | "id":6, 95 | "flags":{ 96 | 97 | }, 98 | "type":0, 99 | "text":"Major with a strong side effect", 100 | "img":"icons/svg/d20-black.svg", 101 | "resultId":"", 102 | "weight":1, 103 | "range":[ 104 | 6, 105 | 6 106 | ], 107 | "drawn":false 108 | }, 109 | { 110 | "id":7, 111 | "flags":{ 112 | 113 | }, 114 | "type":0, 115 | "text":"Major with a small side effect", 116 | "img":"icons/svg/d20-black.svg", 117 | "resultId":"", 118 | "weight":1, 119 | "range":[ 120 | 7, 121 | 7 122 | ], 123 | "drawn":false 124 | }, 125 | { 126 | "id":8, 127 | "flags":{ 128 | 129 | }, 130 | "type":0, 131 | "text":"A poison with almost no positive effects", 132 | "img":"icons/svg/d20-black.svg", 133 | "resultId":"", 134 | "weight":1, 135 | "range":[ 136 | 8, 137 | 8 138 | ], 139 | "drawn":false 140 | }, 141 | { 142 | "id":9, 143 | "flags":{ 144 | 145 | }, 146 | "type":0, 147 | "text":"Temporary but strong and wears off quickly", 148 | "img":"icons/svg/d20-black.svg", 149 | "resultId":"", 150 | "weight":1, 151 | "range":[ 152 | 9, 153 | 9 154 | ], 155 | "drawn":false 156 | }, 157 | { 158 | "id":10, 159 | "flags":{ 160 | 161 | }, 162 | "type":0, 163 | "text":"Seemingly Permanent", 164 | "img":"icons/svg/d20-black.svg", 165 | "resultId":"", 166 | "weight":1, 167 | "range":[ 168 | 10, 169 | 10 170 | ], 171 | "drawn":false 172 | } 173 | ], 174 | "formula":"", 175 | "replacement":true, 176 | "displayRoll":true 177 | } 178 | -------------------------------------------------------------------------------- /packs/table/LOG.old: -------------------------------------------------------------------------------- 1 | 2025/06/19-12:14:37.555197 315389000 Recovering log #18 2 | 2025/06/19-12:14:37.555557 315389000 Delete type=3 #17 3 | 2025/06/19-12:14:37.555612 315389000 Delete type=0 #18 4 | 2025/06/19-12:28:46.347181 30e2ff000 Level-0 table #22: started 5 | 2025/06/19-12:28:46.399569 30e2ff000 Level-0 table #22: 6595976 bytes OK 6 | 2025/06/19-12:28:46.403452 30e2ff000 Delete type=0 #20 7 | 2025/06/19-12:31:32.597428 30e2ff000 Level-0 table #24: started 8 | 2025/06/19-12:31:32.599858 30e2ff000 Level-0 table #24: 226163 bytes OK 9 | 2025/06/19-12:31:32.600112 30e2ff000 Delete type=0 #21 10 | 2025/06/19-12:31:32.601316 30e2ff000 Manual compaction at level-0 from '!folders!Fh9VreujUJWxarX5' @ 72057594037927935 : 1 .. '!tables.results!zmRYugGqQSK67csZ.zzZRNNz8xoZWeQuw' @ 0 : 0; will stop at '!tables.results!tgpKuxAzuSyY7c3w.zkeE7mqflzFYpOHf' @ 57272 : 1 11 | 2025/06/19-12:31:32.601322 30e2ff000 Compacting 1@0 + 1@1 files 12 | 2025/06/19-12:31:32.619670 30e2ff000 Generated table #25@0: 6509 keys, 2134896 bytes 13 | 2025/06/19-12:31:32.644541 30e2ff000 Generated table #26@0: 12559 keys, 2152242 bytes 14 | 2025/06/19-12:31:32.667097 30e2ff000 Generated table #27@0: 8746 keys, 2144351 bytes 15 | 2025/06/19-12:31:32.668785 30e2ff000 Generated table #28@0: 738 keys, 162715 bytes 16 | 2025/06/19-12:31:32.668793 30e2ff000 Compacted 1@0 + 1@1 files => 6594204 bytes 17 | 2025/06/19-12:31:32.668855 30e2ff000 compacted to: files[ 0 4 3 0 0 0 0 ] 18 | 2025/06/19-12:31:32.669093 30e2ff000 Delete type=2 #22 19 | 2025/06/19-12:31:32.669227 30e2ff000 Delete type=2 #24 20 | 2025/06/19-12:31:32.669288 30e2ff000 Manual compaction at level-0 from '!tables.results!tgpKuxAzuSyY7c3w.zkeE7mqflzFYpOHf' @ 57272 : 1 .. '!tables.results!zmRYugGqQSK67csZ.zzZRNNz8xoZWeQuw' @ 0 : 0; will stop at (end) 21 | 2025/06/19-12:31:32.669311 30e2ff000 Manual compaction at level-1 from '!folders!Fh9VreujUJWxarX5' @ 72057594037927935 : 1 .. '!tables.results!zmRYugGqQSK67csZ.zzZRNNz8xoZWeQuw' @ 0 : 0; will stop at '!tables.results!K0P2ccJVP3WAJgkb.YFENGkwwOZ3ig2T3' @ 34978 : 1 22 | 2025/06/19-12:31:32.669322 30e2ff000 Compacting 1@1 + 1@2 files 23 | 2025/06/19-12:31:32.685928 30e2ff000 Generated table #29@1: 6511 keys, 2134354 bytes 24 | 2025/06/19-12:31:32.687876 30e2ff000 Generated table #30@1: 924 keys, 249532 bytes 25 | 2025/06/19-12:31:32.687886 30e2ff000 Compacted 1@1 + 1@2 files => 2383886 bytes 26 | 2025/06/19-12:31:32.687946 30e2ff000 compacted to: files[ 0 3 4 0 0 0 0 ] 27 | 2025/06/19-12:31:32.688103 30e2ff000 Delete type=2 #10 28 | 2025/06/19-12:31:32.688294 30e2ff000 Delete type=2 #25 29 | 2025/06/19-12:31:32.688372 30e2ff000 Manual compaction at level-1 from '!tables.results!K0P2ccJVP3WAJgkb.YFENGkwwOZ3ig2T3' @ 34978 : 1 .. '!tables.results!zmRYugGqQSK67csZ.zzZRNNz8xoZWeQuw' @ 0 : 0; will stop at '!tables.results!RI4k81twiRPilioQ.ttuM3ckla2A9P3Fl' @ 47530 : 1 30 | 2025/06/19-12:31:32.688378 30e2ff000 Compacting 1@1 + 2@2 files 31 | 2025/06/19-12:31:32.711670 30e2ff000 Generated table #31@1: 12559 keys, 2152242 bytes 32 | 2025/06/19-12:31:32.717171 30e2ff000 Generated table #32@1: 3216 keys, 702962 bytes 33 | 2025/06/19-12:31:32.717182 30e2ff000 Compacted 1@1 + 2@2 files => 2855204 bytes 34 | 2025/06/19-12:31:32.717234 30e2ff000 compacted to: files[ 0 2 4 0 0 0 0 ] 35 | 2025/06/19-12:31:32.717360 30e2ff000 Delete type=2 #11 36 | 2025/06/19-12:31:32.717741 30e2ff000 Delete type=2 #26 37 | 2025/06/19-12:31:32.717825 30e2ff000 Delete type=2 #30 38 | 2025/06/19-12:31:32.717873 30e2ff000 Expanding@1 1+2 (2144351+1922807 bytes) to 2+2 (2307066+1922807 bytes) 39 | 2025/06/19-12:31:32.718063 30e2ff000 Manual compaction at level-1 from '!tables.results!RI4k81twiRPilioQ.ttuM3ckla2A9P3Fl' @ 47530 : 1 .. '!tables.results!zmRYugGqQSK67csZ.zzZRNNz8xoZWeQuw' @ 0 : 0; will stop at '!tables.results!zmRYugGqQSK67csZ.zzZRNNz8xoZWeQuw' @ 57082 : 1 40 | 2025/06/19-12:31:32.718068 30e2ff000 Compacting 2@1 + 2@2 files 41 | 2025/06/19-12:31:32.738386 30e2ff000 Generated table #33@1: 8746 keys, 2144351 bytes 42 | 2025/06/19-12:31:32.740404 30e2ff000 Generated table #34@1: 738 keys, 162715 bytes 43 | 2025/06/19-12:31:32.740423 30e2ff000 Compacted 2@1 + 2@2 files => 2307066 bytes 44 | 2025/06/19-12:31:32.740492 30e2ff000 compacted to: files[ 0 0 4 0 0 0 0 ] 45 | 2025/06/19-12:31:32.740541 30e2ff000 Delete type=2 #28 46 | 2025/06/19-12:31:32.740677 30e2ff000 Delete type=2 #12 47 | 2025/06/19-12:31:32.740781 30e2ff000 Delete type=2 #32 48 | 2025/06/19-12:31:32.740919 30e2ff000 Delete type=2 #27 49 | 2025/06/19-12:31:32.740993 30e2ff000 Manual compaction at level-1 from '!tables.results!zmRYugGqQSK67csZ.zzZRNNz8xoZWeQuw' @ 57082 : 1 .. '!tables.results!zmRYugGqQSK67csZ.zzZRNNz8xoZWeQuw' @ 0 : 0; will stop at (end) 50 | -------------------------------------------------------------------------------- /independent_tables/100-interesting-prisoners.json: -------------------------------------------------------------------------------- 1 | {"name": "Interesting Prisoners","description": "One hundred interesting and deadly prison-dwellers!Credit: http://dndspeak.com", "permission": {"default": 0},"flags": {},"results": [{"_id": "E6RKGDQsdrsnKnbG","flags": {},"type": 0,"text": "Ethel – A Sea Hag that was caught breaking into a home, now disguised as a beautiful woman and awaiting trial. She is unable to use magic due to the nature of the cell.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [1, 1],"drawn": false},{"_id": "g5ZNA5BgihUXANqq","flags": {},"type": 0,"text": "Jojo – A skinny teenage human boy with greasy jet black hair. He’s been here a few times (mostly for stealing. once for defecating on doorstep of the jailhouse), but today he smashed the wheels on 2 merchant carts with a stolen blacksmith hammer.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [2, 2],"drawn": false},{"_id": "XZa42cTNtBsgq5aL","flags": {},"type": 0,"text": "Tsaliya de Chaim – eternally grimacing female gorgon with a statue for a cellmate. Takes no shit from anyone.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [3, 3],"drawn": false},{"_id": "81POvwfnSW0NfbM7","flags": {},"type": 0,"text": "A male kenku who has plucked nearly all of his reachable feathers, constantly repeating haunting chants in different voices and otherworldly noises. Madness dances in his paranoid, bloodshot eyes.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [4, 4],"drawn": false},{"_id": "APjTWcjg6xsspcFr","flags": {},"type": 0,"text": "Derek Creighton – human rogue, able to escape from any cell. All of his limbs are pinned through the bone by metal cylinders connected to full-body restraints, topped off by a gem radiating an antimagic aura. He shrugs off the pain with a cocky attitude and an assurance that the only reason he’s still there is that he wants to be.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [5, 5],"drawn": false},{"_id": "bTh3TfAsXyuq86OP","flags": {},"type": 0,"text": "Ciara Ashling – A heavily attitudinal female tiefling, arrested for arson. Constantly demands to see her lawyer, and will always inform that her dual citizenship in the nine hells makes her immune to punishment this way. Said lawyer is a demon made up of mostly flame, whose method of legal defense is incineration of accusers.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [6, 6],"drawn": false},{"_id": "Lf5i9Cftjf5PaSPL","flags": {},"type": 0,"text": "Richard Mason – a once strong human man with an obviously broken spirit. Arrested for the murder of his child’s supposed killer, a constant illusion of his deceased daughter follows Richard and is visible to all. Though this apparition is intangible, it constantly and silently pleads for it fathers’ love and care.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [7, 7],"drawn": false},{"_id": "w4VgDCgACu6D9Zi7","flags": {},"type": 0,"text": "(Name: the sound of his cell locking) – A male kenku who paces his cell nonstop, repeating such lines as ‘you’ll have to take the fall for this one’ and ‘who would ever believe you?’ In the local commander’s voice.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [8, 8],"drawn": false},{"_id": "byx801ZPa8toCcUZ","flags": {},"type": 0,"text": "Remina Aedriel – an elven woman of indiscrimanite age, who spends her time caring for the injured and sick of the prison when the guards and medical staff fail to care for them. Is defended by the other prisoners for harm and often asked for advice.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [9, 9],"drawn": false},{"_id": "8ZzVPpl6P12wuLQR","flags": {},"type": 0,"text": "Steve – a half-orc built like a tank, steve is convinced that he’s actually a human, is from some place called ‘Ohio’, and reportedly remembers nothing of slaughtering and burning the local tavern before his arrest.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [10, 10],"drawn": false},{"_id": "sFncPd8daPWo1O4S","flags": {},"type": 0,"text": "Dhalbrur the Beholder – In jail for killing livestock and crops of a town. All eyes have been covered to prevent escape.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [11, 11],"drawn": false},{"_id": "nXyYk6FVD8Lg2G24","flags": {},"type": 0,"text": "Diamen Stoneton – Stole a piece of bread and a glass of ale from a tavern in the middle of the night.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [12, 12],"drawn": false},{"_id": "WLu9MWa8IhIdlcC5","flags": {},"type": 0,"text": "Regularguy McRealperson – A mimic that tried to sneak into a town to hunt disguised as a human, but couldn’t think of a good name.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [13, 13],"drawn": false},{"_id": "MLf38kociYhH0v9r","flags": {},"type": 0,"text": "Clark Bent – derranged drunk with a backwards ‘S’ tattooed on his chest. Is gagged and chained to the wall. If released he will occasionally jump in the air trying to fly. He insists that he is a ‘super man, once you get to know him.’ Guards will inform you he is a drunk who forgot how to cast fly and went mad as it was his favourite thing to do.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [14, 14],"drawn": false},{"_id": "IOrZhXLuy8oO3PPR","flags": {},"type": 0,"text": "Gordon Bouzaglo – A pasta cart owner arrested for feeding food inspectors fried beef tapeworms in retaliation for receiving multiple unsanitary food prep citations.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [15, 15],"drawn": false},{"_id": "uLmSf43HhCl6gBj4","flags": {},"type": 0,"text": "Valerie ‘Val’ Ratigat – Wererat drug dealer to society’s elite. She is nonchalant about being imprisoned; her uncle is a big cheese in town and will spring her soon. The guards don’t seem to mind that her family butler brought a 3 course meal complete with wine service to her cell. Entertain her and she might slip you a fork to pick your lock with.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [16, 16],"drawn": false},{"_id": "DY5YEgrgWmHhl0b7","flags": {},"type": 0,"text": "A collection of 11 drunks – The guards often toss all the wandering drunkards they find into a single cell so they can sober up. Most of them are sleeping or too hung over to make talk. Their cell reeks of vomit and piss.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [17, 17],"drawn": false},{"_id": "Me8d0Yp8jeQlYP8l","flags": {},"type": 0,"text": "Gray Shido – Skinny man with a nice mustache who runs an illegal gambling parlor that doesn’t pay taxes. The head of guard patrol in Shido’s territory changed recently and wanted more bribe than Shido was willing to pay. Incidentally, the new head of patrol was just found dead, head run over by a wagon wheel after tragically tripping in the street. Complete accident. 10 witnesses corroborating.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [18, 18],"drawn": false},{"_id": "BqNgW3tdoBbhoaIu","flags": {},"type": 0,"text": "Linda Lockhands – Proprietor of a clock, lock, and fine smithing shop which is allegedly a front store for a notorious thieves guild operation. The guards arrested her on trumped up charges hoping to inspect her shop, but they found nothing. Linda knows more than a high-council of archwizards about rare and unusual arcane items, legal or otherwise.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [19, 19],"drawn": false},{"_id": "Mhr2pO18dvGaxGSf","flags": {},"type": 0,"text": "Moaner – Someone wrapped up under a blanket lying on the floor so they aren’t visible at all. They are writhing and moaning like they are having a severe bellyache or some other medical issue. The other nearby cells want this person to shut up.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [20, 20],"drawn": false},{"_id": "Hq8ifePxRF8X5RSz","flags": {},"type": 0,"text": "Blunty Candor – Had an argument in the street and beat her husband with a frying pan. A jailtime frequent flier for domestic violence, but the magistrates keep letting Mrs. Candor out because she always has a young child to take care of.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [21, 21],"drawn": false},{"_id": "LMfqf43cVVvnX3uB","flags": {},"type": 0,"text": "Honey Rosewater – Prostitute. Honey was arrested after soliciting in several stores and restaurants and then refusing the leave. She is addicted to something and having withdrawal shakes. The guards are avoiding her because she lunges at them trying to scratch their faces open.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [22, 22],"drawn": false},{"_id": "xgkDq8FyDI6Gb2QS","flags": {},"type": 0,"text": "Fizzy Bottles – a crazy goblin who swears up and down that there’s an oncoming undead blight and he’s the only one who can stop it. Though, in reality, he’s planning to start an undead blight.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [23, 23],"drawn": false},{"_id": "EPzR7EFLWSVxwZvn","flags": {},"type": 0,"text": "Grey – A mysterious and highly intelligent fiend who claims to have come from the stars. He’s actually just a f","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [24, 24],"drawn": false}],"formula": "1d25","replacement": true,"displayRoll": true,"_id": "9oJYuqym1d4TWviE"} 2 | -------------------------------------------------------------------------------- /independent_tables/inspirations.json: -------------------------------------------------------------------------------- 1 | { 2 | "_id": "t9ncQLOuiHUXUtHP", 3 | "name": "Inspirations", 4 | "sort": 200000, 5 | "flags": { 6 | "exportSource": { 7 | "world": "eberron", 8 | "system": "dnd5e", 9 | "coreVersion": "0.5.7", 10 | "systemVersion": 0.9 11 | } 12 | }, 13 | "description": "Courtesy of @Zarek", 14 | "results": [ 15 | { 16 | "_id": "0FwpEuR2whJadv2R", 17 | "flags": {}, 18 | "type": 0, 19 | "text": "A bold warrior may be lucky, but no warrior can be lucky unless he is bold.", 20 | "img": "icons/svg/d20-black.svg", 21 | "resultId": "", 22 | "weight": 1, 23 | "range": [ 24 | 1, 25 | 1 26 | ], 27 | "drawn": false 28 | }, 29 | { 30 | "_id": "8GxiqMZnWrPSSU8h", 31 | "flags": {}, 32 | "type": 0, 33 | "text": "Winners know when to quit. WHEN THEY WIN", 34 | "img": "icons/svg/d20-black.svg", 35 | "resultId": "", 36 | "weight": 1, 37 | "range": [ 38 | 2, 39 | 2 40 | ], 41 | "drawn": false 42 | }, 43 | { 44 | "_id": "56qJTAWKMX8HsOds", 45 | "flags": {}, 46 | "type": 0, 47 | "text": "Cry 'Havoc' and let slip the dogs of War.", 48 | "img": "icons/svg/d20-black.svg", 49 | "resultId": "", 50 | "weight": 1, 51 | "range": [ 52 | 3, 53 | 3 54 | ], 55 | "drawn": false 56 | }, 57 | { 58 | "_id": "9PfORNhDo23SJAfQ", 59 | "flags": {}, 60 | "type": 0, 61 | "text": "Where the battle rages, there the measure of the man is proved! ", 62 | "img": "icons/svg/d20-black.svg", 63 | "resultId": "", 64 | "weight": 1, 65 | "range": [ 66 | 4, 67 | 4 68 | ], 69 | "drawn": false 70 | }, 71 | { 72 | "_id": "jVtS3XeHAJQjFz7s", 73 | "flags": {}, 74 | "type": 0, 75 | "text": "Remember the last guy who quit? EXACTLY. YOU DON'T.", 76 | "img": "icons/svg/d20-black.svg", 77 | "resultId": "", 78 | "weight": 1, 79 | "range": [ 80 | 5, 81 | 5 82 | ], 83 | "drawn": false 84 | }, 85 | { 86 | "_id": "hiHkpekpBUQNKFZk", 87 | "flags": {}, 88 | "type": 0, 89 | "text": "When there is no peril in the fight there is no glory in the triumph.", 90 | "img": "icons/svg/d20-black.svg", 91 | "resultId": "", 92 | "weight": 1, 93 | "range": [ 94 | 6, 95 | 6 96 | ], 97 | "drawn": false 98 | }, 99 | { 100 | "_id": "sCWxGAVaJwDXrBIz", 101 | "flags": {}, 102 | "type": 0, 103 | "text": "Victory is always possible for the person who refuses to stop fighting.", 104 | "img": "icons/svg/d20-black.svg", 105 | "resultId": "", 106 | "weight": 1, 107 | "range": [ 108 | 7, 109 | 7 110 | ], 111 | "drawn": false 112 | }, 113 | { 114 | "_id": "0QjwfeuwCdZ6eIWw", 115 | "flags": {}, 116 | "type": 0, 117 | "text": "Nobody makes you bleed your own blood... NOBODY!", 118 | "img": "icons/svg/d20-black.svg", 119 | "resultId": "", 120 | "weight": 1, 121 | "range": [ 122 | 8, 123 | 8 124 | ], 125 | "drawn": false 126 | }, 127 | { 128 | "_id": "gk2BmWuxJTuF2sIY", 129 | "flags": {}, 130 | "type": 0, 131 | "text": "When cities burn and armies turn and flee in disarray, cowards will cry: 'Tis best to fly, and fight another day'. But warriors know in their marrow, When they die and fall, 'tis best to have fought and lost than not to have fought at all.", 132 | "img": "icons/svg/d20-black.svg", 133 | "resultId": "", 134 | "weight": 1, 135 | "range": [ 136 | 9, 137 | 9 138 | ], 139 | "drawn": true 140 | }, 141 | { 142 | "_id": "GNEsSenATuizjeY8", 143 | "flags": {}, 144 | "type": 0, 145 | "text": "If a man hasn't discovered something that he will die for, he isn't fit to live.", 146 | "img": "icons/svg/d20-black.svg", 147 | "resultId": "", 148 | "weight": 1, 149 | "range": [ 150 | 10, 151 | 10 152 | ], 153 | "drawn": false 154 | }, 155 | { 156 | "_id": "pcSEIqLbFPXIESoR", 157 | "flags": {}, 158 | "type": 0, 159 | "text": "Rules are for children. This is war, and in war the only crime is to lose.", 160 | "img": "icons/svg/d20-black.svg", 161 | "resultId": "", 162 | "weight": 1, 163 | "range": [ 164 | 11, 165 | 11 166 | ], 167 | "drawn": false 168 | }, 169 | { 170 | "_id": "URn5rlt7uAqKmqND", 171 | "flags": {}, 172 | "type": 0, 173 | "text": "Look my friends! Look to the fear in their eyes, as they question why the sun itself would gaze upon them with unwavering fury. They know not that they face their destroyers, that we stand before them, that they might know true obliteration.", 174 | "img": "icons/svg/d20-black.svg", 175 | "resultId": "", 176 | "weight": 1, 177 | "range": [ 178 | 12, 179 | 12 180 | ], 181 | "drawn": false 182 | }, 183 | { 184 | "_id": "A8fBUX50QROtRC0x", 185 | "flags": {}, 186 | "type": 0, 187 | "text": "Every man dies. Not every man really lives.", 188 | "img": "icons/svg/d20-black.svg", 189 | "resultId": "", 190 | "weight": 1, 191 | "range": [ 192 | 13, 193 | 13 194 | ], 195 | "drawn": true 196 | }, 197 | { 198 | "_id": "LQ9RxoHmg5TXgPd1", 199 | "flags": {}, 200 | "type": 0, 201 | "text": "What lies behind us and what lies before us are tiny matters compared to what lies within us.", 202 | "img": "icons/svg/d20-black.svg", 203 | "resultId": "", 204 | "weight": 1, 205 | "range": [ 206 | 14, 207 | 14 208 | ], 209 | "drawn": false 210 | }, 211 | { 212 | "_id": "UpboJTe7gsrKniyi", 213 | "flags": {}, 214 | "type": 0, 215 | "text": "One day, your life will flash before your eyes. Make sure it's worth watching.", 216 | "img": "icons/svg/d20-black.svg", 217 | "resultId": "", 218 | "weight": 1, 219 | "range": [ 220 | 15, 221 | 15 222 | ], 223 | "drawn": true 224 | }, 225 | { 226 | "_id": "cEvshxveJQKmqhr4", 227 | "flags": {}, 228 | "type": 0, 229 | "text": "Even the darkest night turns to dawn eventually... Our sun will rise again.", 230 | "img": "icons/svg/d20-black.svg", 231 | "resultId": "", 232 | "weight": 1, 233 | "range": [ 234 | 16, 235 | 16 236 | ], 237 | "drawn": false 238 | }, 239 | { 240 | "_id": "TRf9jYDF8gC9GTPu", 241 | "flags": {}, 242 | "type": 0, 243 | "text": "What's done is done. You can't change the past. But it doesn't mean that the future is decided! What you do right now... That's what will determine the future!", 244 | "img": "icons/svg/d20-black.svg", 245 | "resultId": "", 246 | "weight": 1, 247 | "range": [ 248 | 17, 249 | 17 250 | ], 251 | "drawn": false 252 | }, 253 | { 254 | "_id": "pkZPb4nV0po164IG", 255 | "flags": {}, 256 | "type": 0, 257 | "text": "Think if you want to stay alive. Fear will kill you if you don't control it.", 258 | "img": "icons/svg/d20-black.svg", 259 | "resultId": "", 260 | "weight": 1, 261 | "range": [ 262 | 18, 263 | 18 264 | ], 265 | "drawn": false 266 | }, 267 | { 268 | "_id": "lnBAqTfUuvOq5QEw", 269 | "flags": {}, 270 | "type": 0, 271 | "text": "One day, your grandchildren shall tell the tale of this moment.", 272 | "img": "icons/svg/d20-black.svg", 273 | "resultId": "", 274 | "weight": 1, 275 | "range": [ 276 | 19, 277 | 19 278 | ], 279 | "drawn": false 280 | }, 281 | { 282 | "_id": "kVeN3uvZdMZ9jQFE", 283 | "flags": {}, 284 | "type": 0, 285 | "text": "We are relying on you. You must believe you can do this.", 286 | "img": "icons/svg/d20-black.svg", 287 | "resultId": "", 288 | "weight": 1, 289 | "range": [ 290 | 20, 291 | 20 292 | ], 293 | "drawn": false 294 | }, 295 | { 296 | "_id": "QUah1tvaSMyzrr1y", 297 | "flags": {}, 298 | "type": 0, 299 | "text": "I believe in you, not because you are infallible, but because you never give up.", 300 | "img": "icons/svg/d20-black.svg", 301 | "resultId": "", 302 | "weight": 1, 303 | "range": [ 304 | 21, 305 | 21 306 | ], 307 | "drawn": false 308 | }, 309 | { 310 | "_id": "270kLAmgozuO236Q", 311 | "flags": {}, 312 | "type": 0, 313 | "text": "Everyone else is watching you, doubting you. That is why they will not succeed, and you will.", 314 | "img": "icons/svg/d20-black.svg", 315 | "resultId": "", 316 | "weight": 1, 317 | "range": [ 318 | 22, 319 | 22 320 | ], 321 | "drawn": false 322 | }, 323 | { 324 | "_id": "SknLEoQ05HkW4twD", 325 | "flags": {}, 326 | "type": 0, 327 | "text": "Strike them down. We may not be in the right, but I don’t care. In battle, it doesn’t matter who’s right, it matters who’s left.", 328 | "img": "icons/svg/d20-black.svg", 329 | "resultId": "", 330 | "weight": 1, 331 | "range": [ 332 | 23, 333 | 23 334 | ], 335 | "drawn": false 336 | }, 337 | { 338 | "_id": "XiwdNXOBwgaUBWPf", 339 | "flags": {}, 340 | "type": 0, 341 | "text": "This might end in disaster. But it also might end in us becoming the most famous bastards in the world.", 342 | "img": "icons/svg/d20-black.svg", 343 | "resultId": "", 344 | "weight": 1, 345 | "range": [ 346 | 24, 347 | 24 348 | ], 349 | "drawn": false 350 | }, 351 | { 352 | "_id": "beGwQzvLA05MG0h0", 353 | "flags": {}, 354 | "type": 0, 355 | "text": "Worry not, when I tell the tale of this moment one day, I’ll leave out how you would have failed spectacularly without my help.", 356 | "img": "icons/svg/d20-black.svg", 357 | "resultId": "", 358 | "weight": 1, 359 | "range": [ 360 | 25, 361 | 25 362 | ], 363 | "drawn": false 364 | }, 365 | { 366 | "_id": "xGja9BQe5DttdqLw", 367 | "flags": {}, 368 | "type": 0, 369 | "text": "They say it’s better to light a candle than curse the darkness. I say it’s better to light your foe on fire and let him do the cursing.", 370 | "img": "icons/svg/d20-black.svg", 371 | "resultId": "", 372 | "weight": 1, 373 | "range": [ 374 | 26, 375 | 26 376 | ], 377 | "drawn": true 378 | }, 379 | { 380 | "_id": "pLWGkXWRyV21wd6C", 381 | "flags": {}, 382 | "type": 0, 383 | "text": "You might fail, die even. But at least it won’t be boring.", 384 | "img": "icons/svg/d20-black.svg", 385 | "resultId": "", 386 | "weight": 1, 387 | "range": [ 388 | 27, 389 | 27 390 | ], 391 | "drawn": false 392 | }, 393 | { 394 | "_id": "U8JKHM9JJBpnzPCc", 395 | "flags": {}, 396 | "type": 0, 397 | "text": "Well, my time of not taking you seriously is coming to a middle.", 398 | "img": "icons/svg/d20-black.svg", 399 | "resultId": "", 400 | "weight": 1, 401 | "range": [ 402 | 28, 403 | 28 404 | ], 405 | "drawn": false 406 | }, 407 | { 408 | "_id": "FBjxT4P4EH253dfr", 409 | "flags": {}, 410 | "type": 0, 411 | "text": "Someone ever tries to kill you, you try to kill 'em right back!", 412 | "img": "icons/svg/d20-black.svg", 413 | "resultId": "", 414 | "weight": 1, 415 | "range": [ 416 | 29, 417 | 29 418 | ], 419 | "drawn": false 420 | }, 421 | { 422 | "_id": "lSpGfEtPYsow6Kio", 423 | "flags": {}, 424 | "type": 0, 425 | "text": "If we loose this fight, they'll rape us to death, eat our flesh, and sew our skin into their clothes ... and if we're very, very lucky, they'll do it in that order.", 426 | "img": "icons/svg/d20-black.svg", 427 | "resultId": "", 428 | "weight": 1, 429 | "range": [ 430 | 30, 431 | 30 432 | ], 433 | "drawn": false 434 | }, 435 | { 436 | "_id": "DiKm5DzribmJERd8", 437 | "flags": {}, 438 | "type": 0, 439 | "text": "Don't worry I've been under fire before. Well ... I've been in a fire. Actually, I was fired. I can handle myself.", 440 | "img": "icons/svg/d20-black.svg", 441 | "resultId": "", 442 | "weight": 1, 443 | "range": [ 444 | 31, 445 | 31 446 | ], 447 | "drawn": false 448 | }, 449 | { 450 | "_id": "ZBUY9ArG9Om4YbP7", 451 | "flags": {}, 452 | "type": 0, 453 | "text": "Do, or do not. There is no “try”", 454 | "img": "icons/svg/d20-black.svg", 455 | "resultId": "", 456 | "weight": 1, 457 | "range": [ 458 | 32, 459 | 32 460 | ], 461 | "drawn": false 462 | }, 463 | { 464 | "_id": "4qbsBYSJ5PIxKsGv", 465 | "flags": {}, 466 | "type": 0, 467 | "text": "Nobody is gonna hit as hard as life, but it ain’t how hard you can hit. It’s how hard you can get hit and keep moving forward. It’s how much you can take, and keep moving forward. That’s how winning is done.", 468 | "img": "icons/svg/d20-black.svg", 469 | "resultId": "", 470 | "weight": 1, 471 | "range": [ 472 | 33, 473 | 33 474 | ], 475 | "drawn": false 476 | }, 477 | { 478 | "_id": "FjPhGqjOl7WA785h", 479 | "flags": {}, 480 | "type": 0, 481 | "text": "When a defining moment comes along, you can do one of two things. Define the moment, or let the moment define you.", 482 | "img": "icons/svg/d20-black.svg", 483 | "resultId": "", 484 | "weight": 1, 485 | "range": [ 486 | 34, 487 | 34 488 | ], 489 | "drawn": false 490 | }, 491 | { 492 | "_id": "Zx5tA4aSJ4cFkNeM", 493 | "flags": {}, 494 | "type": 0, 495 | "text": "Violence may not be the answer, but its gotten us this far.", 496 | "img": "icons/svg/d20-black.svg", 497 | "resultId": "", 498 | "weight": 1, 499 | "range": [ 500 | 35, 501 | 35 502 | ], 503 | "drawn": true 504 | }, 505 | { 506 | "_id": "MCTnluYgHVZ1eBeg", 507 | "flags": {}, 508 | "type": 0, 509 | "text": "The gods give the hardest battles to the strongest warriors.", 510 | "img": "icons/svg/d20-black.svg", 511 | "resultId": "", 512 | "weight": 1, 513 | "range": [ 514 | 36, 515 | 36 516 | ], 517 | "drawn": false 518 | }, 519 | { 520 | "_id": "FbToM1EqeKgsCAAX", 521 | "flags": {}, 522 | "type": 0, 523 | "text": "You've taken shits more fearsome than this lot!", 524 | "img": "icons/svg/d20-black.svg", 525 | "resultId": "", 526 | "weight": 1, 527 | "range": [ 528 | 37, 529 | 37 530 | ], 531 | "drawn": true 532 | } 533 | ], 534 | "formula": "1d37", 535 | "replacement": false, 536 | "displayRoll": false 537 | } 538 | -------------------------------------------------------------------------------- /independent_tables/100-npc-jobs.json: -------------------------------------------------------------------------------- 1 | {"name": "NPC Jobs","description": "One hundred jobs to add detail to your random NPCs!Credit: http://dndspeak.com", "permission": {"default": 0},"flags": {},"results": [{"_id": "3PUkLjrcHX5PsrS4","flags": {},"type": 0,"text": "Tinkerer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [1, 1],"drawn": false},{"_id": "u8Zv4HoUWj1N5M7o","flags": {},"type": 0,"text": "Owlbear Breeder","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [2, 2],"drawn": false},{"_id": "8aE5Fec1e2zJ0rJO","flags": {},"type": 0,"text": "Shaman","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [3, 3],"drawn": false},{"_id": "nJpD7dyfhrwztI3r","flags": {},"type": 0,"text": "Bottle Maker","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [4, 4],"drawn": false},{"_id": "IGLDF4k9PbWI30Hx","flags": {},"type": 0,"text": "Stable hand","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [5, 5],"drawn": false},{"_id": "uKpB4Jd25b5LEkre","flags": {},"type": 0,"text": "Innkeeper","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [6, 6],"drawn": false},{"_id": "AJ37uvMIvo9FrmRH","flags": {},"type": 0,"text": "Blacksmith","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [7, 7],"drawn": false},{"_id": "t4HMKnNllBnflI0s","flags": {},"type": 0,"text": "Washerwoman","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [8, 8],"drawn": false},{"_id": "BrP2fdCBmGbjXNq0","flags": {},"type": 0,"text": "Town cryer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [9, 9],"drawn": false},{"_id": "QGqlu87KnXtR3zaV","flags": {},"type": 0,"text": "Tailor","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [10, 10],"drawn": false},{"_id": "VCk3STGKCMQDTgQI","flags": {},"type": 0,"text": "Portrait painter","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [11, 11],"drawn": false},{"_id": "Tw27OyFRaTC30KpT","flags": {},"type": 0,"text": "Cobbler","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [12, 12],"drawn": false},{"_id": "4agbSj1659MQQaJ0","flags": {},"type": 0,"text": "Lamplighter","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [13, 13],"drawn": false},{"_id": "uNpFyJR973lA91Zi","flags": {},"type": 0,"text": "Trapper","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [14, 14],"drawn": false},{"_id": "g4IHtwbS1uYXyzwm","flags": {},"type": 0,"text": "Fletcher","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [15, 15],"drawn": false},{"_id": "rUzHpoRnpISR7w7V","flags": {},"type": 0,"text": "Tanner","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [16, 16],"drawn": false},{"_id": "CvdTGP2DHDtYZUwU","flags": {},"type": 0,"text": "Herbalist","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [17, 17],"drawn": false},{"_id": "L5S9aWKgKk35LEL2","flags": {},"type": 0,"text": "Farmer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [18, 18],"drawn": false},{"_id": "ZJcIdaxojmXbvFEc","flags": {},"type": 0,"text": "Carpenter","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [19, 19],"drawn": false},{"_id": "DUCM6TyKw7GXIM5E","flags": {},"type": 0,"text": "Stonemason","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [20, 20],"drawn": false},{"_id": "k24xvQKSggPrmbHC","flags": {},"type": 0,"text": "Miner","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [21, 21],"drawn": false},{"_id": "AqrvT4jRxpxRT3a8","flags": {},"type": 0,"text": "Fortune teller","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [22, 22],"drawn": false},{"_id": "2jlpPpMgn9Gs07MP","flags": {},"type": 0,"text": "Baker","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [23, 23],"drawn": false},{"_id": "u46GDNekLKttuaZz","flags": {},"type": 0,"text": "Town guard","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [24, 24],"drawn": false},{"_id": "nhvNMz6VxlEibfvI","flags": {},"type": 0,"text": "Rat catcher","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [25, 25],"drawn": false},{"_id": "n73Sg1ZSvNg9uFZe","flags": {},"type": 0,"text": "Doctor","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [26, 26],"drawn": false},{"_id": "uv7QUOHD1rg4shKC","flags": {},"type": 0,"text": "Messenger","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [27, 27],"drawn": false},{"_id": "QCWho7DyxJ0R8nJI","flags": {},"type": 0,"text": "Lawyer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [28, 28],"drawn": false},{"_id": "4dj4Wcg1sVnHyM8h","flags": {},"type": 0,"text": "Banker","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [29, 29],"drawn": false},{"_id": "oZwcjb6Gz4Jvh3M3","flags": {},"type": 0,"text": "Animal tamer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [30, 30],"drawn": false},{"_id": "8r3JcslpcOoBSyKz","flags": {},"type": 0,"text": "Guide","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [31, 31],"drawn": false},{"_id": "4NvgdSpc56q3JeMU","flags": {},"type": 0,"text": "Cartographer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [32, 32],"drawn": false},{"_id": "8MSk0D2rfh43V52j","flags": {},"type": 0,"text": "Sheriff","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [33, 33],"drawn": false},{"_id": "6sJBg20mX7LZ8nCk","flags": {},"type": 0,"text": "Dairy maid","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [34, 34],"drawn": false},{"_id": "Qp9s3jGHxryaQeb4","flags": {},"type": 0,"text": "Bookkeeper","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [35, 35],"drawn": false},{"_id": "lFFUN10kiYpJPRyz","flags": {},"type": 0,"text": "Academic","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [36, 36],"drawn": false},{"_id": "ovwv5sjcACaPLYy8","flags": {},"type": 0,"text": "Accountant","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [37, 37],"drawn": false},{"_id": "d4Xd479Ytlzo6H8o","flags": {},"type": 0,"text": "Actor","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [38, 38],"drawn": false},{"_id": "YE9sL7AOH1Hhgi3s","flags": {},"type": 0,"text": "Apprentice","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [39, 39],"drawn": false},{"_id": "XaEmXyWLwKUwCVQe","flags": {},"type": 0,"text": "Artisan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [40, 40],"drawn": false},{"_id": "qNDIC3wh4TZ7nS84","flags": {},"type": 0,"text": "Assassin","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [41, 41],"drawn": false},{"_id": "FI8pG5C8W8PK8Xsh","flags": {},"type": 0,"text": "Bandit","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [42, 42],"drawn": false},{"_id": "hIKHFgBii8HbNQpm","flags": {},"type": 0,"text": "Barde","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [43, 43],"drawn": false},{"_id": "tPXgCWrnMd0q8tWE","flags": {},"type": 0,"text": "Beggar","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [44, 44],"drawn": false},{"_id": "gm5P0Roh5YA6M3MM","flags": {},"type": 0,"text": "Bounty hunter","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [45, 45],"drawn": false},{"_id": "x85Uuy3cKANF4F4Y","flags": {},"type": 0,"text": "Brewer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [46, 46],"drawn": false},{"_id": "loygX3M1LTjaQBst","flags": {},"type": 0,"text": "Con artist","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [47, 47],"drawn": false},{"_id": "ffaVD5swzqbYetjw","flags": {},"type": 0,"text": "Cook","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [48, 48],"drawn": false},{"_id": "45IvzChC40X2tLJi","flags": {},"type": 0,"text": "Druid","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [49, 49],"drawn": false},{"_id": "0CJuZmayxloxBBIN","flags": {},"type": 0,"text": "Fisher","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [50, 50],"drawn": false},{"_id": "uOHah1VWCbuaRXb1","flags": {},"type": 0,"text": "Gambler","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [51, 51],"drawn": false},{"_id": "GtVYf13EOXptcH5d","flags": {},"type": 0,"text": "Gravedigger","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [52, 52],"drawn": false},{"_id": "KBMR0Zv5EH3ALvod","flags": {},"type": 0,"text": "Hunter","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [53, 53],"drawn": false},{"_id": "SQ35QtZOLSMClKBW","flags": {},"type": 0,"text": "Jester","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [54, 54],"drawn": false},{"_id": "x38pDdFENTsb2ezC","flags": {},"type": 0,"text": "Knight","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [55, 55],"drawn": false},{"_id": "9TYIVaBf075weBjB","flags": {},"type": 0,"text": "Laborer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [56, 56],"drawn": false},{"_id": "mCIsYyxbreqd5AwG","flags": {},"type": 0,"text": "Lawman","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [57, 57],"drawn": false},{"_id": "clWYM0eTLSzHJZMw","flags": {},"type": 0,"text": "Lumberjack","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [58, 58],"drawn": false},{"_id": "oFtZXVAkg8EFbb2P","flags": {},"type": 0,"text": "Mercenary","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [59, 59],"drawn": false},{"_id": "43eoVTrq3tT9n8zh","flags": {},"type": 0,"text": "Noble","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [60, 60],"drawn": false},{"_id": "TNytZcCFLNHZxBh7","flags": {},"type": 0,"text": "Priest","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [61, 61],"drawn": false},{"_id": "eO6TET3375FiZv3x","flags": {},"type": 0,"text": "Ranger","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [62, 62],"drawn": false},{"_id": "msbnfM7ZOykf0cKH","flags": {},"type": 0,"text": "Sailor","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [63, 63],"drawn": false},{"_id": "p1zfCzToUlE0YDXR","flags": {},"type": 0,"text": "Scribe","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [64, 64],"drawn": false},{"_id": "R016lJXbHuwHERLa","flags": {},"type": 0,"text": "Servant","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [65, 65],"drawn": false},{"_id": "EsslEdNtxEmvSPur","flags": {},"type": 0,"text": "Shepperd","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [66, 66],"drawn": false},{"_id": "tWjrv3FLBLRuvnKF","flags": {},"type": 0,"text": "Slave","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [67, 67],"drawn": false},{"_id": "ornpFe67kWy1qmcu","flags": {},"type": 0,"text": "Soldier","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [68, 68],"drawn": false},{"_id": "Px4mpI19kPMQ79YC","flags": {},"type": 0,"text": "Thief","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [69, 69],"drawn": false},{"_id": "0sXvn9xZk8q15l38","flags": {},"type": 0,"text": "Thug","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [70, 70],"drawn": false},{"_id": "bBUaHsAPo5OthWMU","flags": {},"type": 0,"text": "Trader","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [71, 71],"drawn": false},{"_id": "ZMuIWZ2H6q4LEDjs","flags": {},"type": 0,"text": "Treasure Hunter","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [72, 72],"drawn": false},{"_id": "NjsfGb7rcqMds4kD","flags": {},"type": 0,"text": "Wanderer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [73, 73],"drawn": false},{"_id": "zxoApcg7EnEDMhzC","flags": {},"type": 0,"text": "Wizard","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [74, 74],"drawn": false},{"_id": "QXfBpFS7pzpRSjUm","flags": {},"type": 0,"text": "Wrestler","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [75, 75],"drawn": false},{"_id": "dNE4TsbuqdOXLtct","flags": {},"type": 0,"text": "Lighthouse Keeper","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [76, 76],"drawn": false},{"_id": "XPx3jf2O8q5Ia7rG","flags": {},"type": 0,"text": "Landlord","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [77, 77],"drawn": false},{"_id": "LoKHtFtvi4Qg2l6I","flags": {},"type": 0,"text": "Author","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [78, 78],"drawn": false},{"_id": "595FY1VFg43Db8Jr","flags": {},"type": 0,"text": "Lookout","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [79, 79],"drawn": false},{"_id": "RUc1HE8XpYHw7X2d","flags": {},"type": 0,"text": "Clocksmith","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [80, 80],"drawn": false},{"_id": "opfG9ZBU4nvMW6Zj","flags": {},"type": 0,"text": "Exorcist","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [81, 81],"drawn": false},{"_id": "4IoF788EiIahoiSq","flags": {},"type": 0,"text": "Soapmaker","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [82, 82],"drawn": false},{"_id": "anay2iwPBvpRwHFJ","flags": {},"type": 0,"text": "Beekeeper","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [83, 83],"drawn": false},{"_id": "JdfUTdo7Zyi7Iv7c","flags": {},"type": 0,"text": "Botanist","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [84, 84],"drawn": false},{"_id": "MaKXPuFePR1Yh2hC","flags": {},"type": 0,"text": "Alchemist","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [85, 85],"drawn": false},{"_id": "j18BuFEr11UvvZdr","flags": {},"type": 0,"text": "Potioneer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [86, 86],"drawn": false},{"_id": "Qq0GklUHK9RcZxlu","flags": {},"type": 0,"text": "Librarian","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [87, 87],"drawn": false},{"_id": "PKh2ctiDf8SR1Jtx","flags": {},"type": 0,"text": "Bartender","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [88, 88],"drawn": false},{"_id": "h6q5y1s1FrNqZuJv","flags": {},"type": 0,"text": "Toymaker","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [89, 89],"drawn": false},{"_id": "KAouO3WczrFT6Hcx","flags": {},"type": 0,"text": "Woodcarver","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [90, 90],"drawn": false},{"_id": "CuLUsufFW2d5Afjl","flags": {},"type": 0,"text": "Squire","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [91, 91],"drawn": false},{"_id": "TpQW4zrwbkwXH7lm","flags": {},"type": 0,"text": "Roofer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [92, 92],"drawn": false},{"_id": "ChKkzEalFF2E9myH","flags": {},"type": 0,"text": "Sculptor","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [93, 93],"drawn": false},{"_id": "zTbsh6isXgc5YvYu","flags": {},"type": 0,"text": "Scholar","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [94, 94],"drawn": false},{"_id": "S70zDtp8QRqsdP9C","flags": {},"type": 0,"text": "Nurse","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [95, 95],"drawn": false},{"_id": "whG32pFk7udap6r7","flags": {},"type": 0,"text": "Nun","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [96, 96],"drawn": false},{"_id": "Ig3vf3llJTaGfRwo","flags": {},"type": 0,"text": "Mortician","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [97, 97],"drawn": false},{"_id": "KWayRjJNtUyxXZMb","flags": {},"type": 0,"text": "Historian","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [98, 98],"drawn": false},{"_id": "K2yIitYCzj0ue2Kk","flags": {},"type": 0,"text": "Gladiator","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [99, 99],"drawn": false},{"_id": "6EUVl6H934LZP2K6","flags": {},"type": 0,"text": "Barber","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [100, 100],"drawn": false}],"formula": "1d101","replacement": true,"displayRoll": true,"_id": "IhIIZoPdQ60Y8tnj"} 2 | -------------------------------------------------------------------------------- /independent_tables/100-magic-sword-names.json: -------------------------------------------------------------------------------- 1 | {"name": "Magic Sword Names","description": "The party found a magical sword while adventuring - what is the sword called?Credit: http://dndspeak.com", "permission": {"default": 0},"flags": {},"results": [{"_id": "kwbjO9cJhOG6JMlB","flags": {},"type": 0,"text": "Orcbane","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [1, 1],"drawn": false},{"_id": "0WRfexZCQqSLGW4E","flags": {},"type": 0,"text": "Devilish Dicer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [2, 2],"drawn": false},{"_id": "4gKZ08lwqfI7w1N9","flags": {},"type": 0,"text": "Bisectinator","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [3, 3],"drawn": false},{"_id": "fu4yOhl4AHgxpI3D","flags": {},"type": 0,"text": "Careless Whisper","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [4, 4],"drawn": false},{"_id": "b0nPlYrMNcgIC6Bz","flags": {},"type": 0,"text": "Caladbolg","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [5, 5],"drawn": false},{"_id": "GHco01Ra0Ura8JNO","flags": {},"type": 0,"text": "Heartseeker","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [6, 6],"drawn": false},{"_id": "6jABprWxlrqmk0fI","flags": {},"type": 0,"text": "Lifeender","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [7, 7],"drawn": false},{"_id": "SxvtFYOmWAcYqdcm","flags": {},"type": 0,"text": "Diplomacy","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [8, 8],"drawn": false},{"_id": "YJqDwO1AGcEPngAs","flags": {},"type": 0,"text": "Judgment","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [9, 9],"drawn": false},{"_id": "F8bPMaOS0bvp81rQ","flags": {},"type": 0,"text": "Finality","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [10, 10],"drawn": false},{"_id": "JYIpsHDmKFwu4XrW","flags": {},"type": 0,"text": "The Unprettier","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [11, 11],"drawn": false},{"_id": "KUSnj4h5J4U8Jpm2","flags": {},"type": 0,"text": "Hushbringer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [12, 12],"drawn": false},{"_id": "Shj8BSnJ4XhA4jEM","flags": {},"type": 0,"text": "Shining Malice","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [13, 13],"drawn": false},{"_id": "y42RepDnmOvdJIVU","flags": {},"type": 0,"text": "Reaver","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [14, 14],"drawn": false},{"_id": "dywwsamEADiuSTBI","flags": {},"type": 0,"text": "Kingmaker","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [15, 15],"drawn": false},{"_id": "xYnRqJ1iUItNOm31","flags": {},"type": 0,"text": "Blood Drinker","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [16, 16],"drawn": false},{"_id": "ABgWX4x3vlaLwfFE","flags": {},"type": 0,"text": "Talon","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [17, 17],"drawn": false},{"_id": "LoEnbqxYGBFg6UjF","flags": {},"type": 0,"text": "Stonesplitter","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [18, 18],"drawn": false},{"_id": "ee8eAG1kjXyZCGaP","flags": {},"type": 0,"text": "Dragonsbane","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [19, 19],"drawn": false},{"_id": "9nuXzICkycMvdwHK","flags": {},"type": 0,"text": "Gutter","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [20, 20],"drawn": false},{"_id": "XSXCGNrL0SqkAsds","flags": {},"type": 0,"text": "Beheader","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [21, 21],"drawn": false},{"_id": "1HMWcI4vSJd2LyFS","flags": {},"type": 0,"text": "Red Fang","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [22, 22],"drawn": false},{"_id": "a0weCvMRq4OBPnQM","flags": {},"type": 0,"text": "Lopper","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [23, 23],"drawn": false},{"_id": "U0ryeISgD4QqBLjP","flags": {},"type": 0,"text": "Gleaming Death","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [24, 24],"drawn": false},{"_id": "1jsDxVnAmOPlBe9O","flags": {},"type": 0,"text": "Pain","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [25, 25],"drawn": false},{"_id": "k6m5y5cFLkBX5K3U","flags": {},"type": 0,"text": "The Fury","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [26, 26],"drawn": false},{"_id": "Q8hq6eqfwz5Sn79C","flags": {},"type": 0,"text": "Bleeding Heart","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [27, 27],"drawn": false},{"_id": "QWeqtE2tXXGuPDS6","flags": {},"type": 0,"text": "Cleaver","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [28, 28],"drawn": false},{"_id": "RBpzpKpsXeRlGZoF","flags": {},"type": 0,"text": "Grinning Night","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [29, 29],"drawn": false},{"_id": "e5FlfyhO4aMkcToK","flags": {},"type": 0,"text": "Unhappy Ending","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [30, 30],"drawn": false},{"_id": "1EVamZiHUh5pdyfJ","flags": {},"type": 0,"text": "Justice","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [31, 31],"drawn": false},{"_id": "dOGFfM5cg6abjyMK","flags": {},"type": 0,"text": "Blinding Truth","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [32, 32],"drawn": false},{"_id": "dRW4AWE6ZFN1WItC","flags": {},"type": 0,"text": "Oblivion","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [33, 33],"drawn": false},{"_id": "0matF13hYruxAhCL","flags": {},"type": 0,"text": "Heaven’s Grace","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [34, 34],"drawn": false},{"_id": "yzGA8S5DVb7WFnhT","flags": {},"type": 0,"text": "Eternal Rest","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [35, 35],"drawn": false},{"_id": "5nFYq9YDFKb0azuj","flags": {},"type": 0,"text": "Sacrifice","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [36, 36],"drawn": false},{"_id": "nrrXNoNmW1Rkcxbb","flags": {},"type": 0,"text": "Finisher","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [37, 37],"drawn": false},{"_id": "JQWpB6CYTdbCnYiU","flags": {},"type": 0,"text": "Lord’s Will","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [38, 38],"drawn": false},{"_id": "ir4mQgcV4TKbrtJf","flags": {},"type": 0,"text": "Ice Finger","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [39, 39],"drawn": false},{"_id": "PSUzWYWIHScDdTfk","flags": {},"type": 0,"text": "Silence of the Dawn","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [40, 40],"drawn": false},{"_id": "6iNV6V1zYV5xGOZF","flags": {},"type": 0,"text": "Iron Steed","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [41, 41],"drawn": false},{"_id": "NBpmIIIgfIdSRo5g","flags": {},"type": 0,"text": "Sentinel","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [42, 42],"drawn": false},{"_id": "3NK4VYLj40qOVmIo","flags": {},"type": 0,"text": "Peace","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [43, 43],"drawn": false},{"_id": "5jXtfWA7PNJ2c9Lj","flags": {},"type": 0,"text": "Rapture’s Gate","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [44, 44],"drawn": false},{"_id": "gez1p78skGFHLJBX","flags": {},"type": 0,"text": "Elysium","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [45, 45],"drawn": false},{"_id": "wlHF8jOh8TSg7L25","flags": {},"type": 0,"text": "Harmony","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [46, 46],"drawn": false},{"_id": "1BhwknwYn1rPru15","flags": {},"type": 0,"text": "Hereafter","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [47, 47],"drawn": false},{"_id": "nWKO4DWFJdZsFu1j","flags": {},"type": 0,"text": "Tranquility","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [48, 48],"drawn": false},{"_id": "WnToFmSiRcQkFSPn","flags": {},"type": 0,"text": "Azure Dream","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [49, 49],"drawn": false},{"_id": "Xj6DtlekrtiTYIoQ","flags": {},"type": 0,"text": "Awakening","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [50, 50],"drawn": false},{"_id": "fq686FFThvhdeUPx","flags": {},"type": 0,"text": "Torment","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [51, 51],"drawn": false},{"_id": "lEPii9rO3B76F1ty","flags": {},"type": 0,"text": "Gravedigger","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [52, 52],"drawn": false},{"_id": "v6dbd6g4oYRLQI0S","flags": {},"type": 0,"text": "Abaddon","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [53, 53],"drawn": false},{"_id": "TmL7ZWNdIibQaaqZ","flags": {},"type": 0,"text": "Apocalypse","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [54, 54],"drawn": false},{"_id": "nP9XrFsyYsiWSUA9","flags": {},"type": 0,"text": "Fate’s Last Dance","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [55, 55],"drawn": false},{"_id": "Jc7E8gxaUllBdtgb","flags": {},"type": 0,"text": "Final Words","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [56, 56],"drawn": false},{"_id": "oWeaIXDxe7SfOdUc","flags": {},"type": 0,"text": "Salt edge","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [57, 57],"drawn": false},{"_id": "ybqQdARKNbQOP520","flags": {},"type": 0,"text": "Stabwing","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [58, 58],"drawn": false},{"_id": "V1YtErXQCeklCaWU","flags": {},"type": 0,"text": "Loki’s horn","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [59, 59],"drawn": false},{"_id": "pCSvF2Dx9MXCQdFC","flags": {},"type": 0,"text": "Xvartslayer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [60, 60],"drawn": false},{"_id": "XwaIE4xiTQFWvQJr","flags": {},"type": 0,"text": "Butterknife","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [61, 61],"drawn": false},{"_id": "oVB39lZ0FJfmmz2L","flags": {},"type": 0,"text": "Icebane","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [62, 62],"drawn": false},{"_id": "DEGrdpBKCZBBhq4r","flags": {},"type": 0,"text": "Magnum opus","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [63, 63],"drawn": false},{"_id": "IgP2nRewdQOBFyTd","flags": {},"type": 0,"text": "Blackan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [64, 64],"drawn": false},{"_id": "epu8qL9OLeb26FBj","flags": {},"type": 0,"text": "Black Scarlet","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [65, 65],"drawn": false},{"_id": "bNJhlGZJSk4APhxE","flags": {},"type": 0,"text": "Gutspiller","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [66, 66],"drawn": false},{"_id": "qjzS5pocXHgDOAld","flags": {},"type": 0,"text": "Dirgesinger","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [67, 67],"drawn": false},{"_id": "u6BZaq73OaicSrkG","flags": {},"type": 0,"text": "Innocence’ End","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [68, 68],"drawn": false},{"_id": "lhaZLYXY7KzAm3wS","flags": {},"type": 0,"text": "Tyrant’s Demise","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [69, 69],"drawn": false},{"_id": "N2xPWvXeI7MEWUed","flags": {},"type": 0,"text": "Mr. Pointy","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [70, 70],"drawn": false},{"_id": "3JMk8lNjTjUXVGgL","flags": {},"type": 0,"text": "Finality","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [71, 71],"drawn": false},{"_id": "4fRV9o50fb3J5OXL","flags": {},"type": 0,"text": "Gore","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [72, 72],"drawn": false},{"_id": "x6b6Xkr1k87bVFUK","flags": {},"type": 0,"text": "Hell’s Afterbirth","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [73, 73],"drawn": false},{"_id": "lYuc7Pf06hyOU1Le","flags": {},"type": 0,"text": "The Ending","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [74, 74],"drawn": false},{"_id": "3CCcIpX7E2GlsPRR","flags": {},"type": 0,"text": "Herald of Mercy","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [75, 75],"drawn": false},{"_id": "eV42vaUdpLAPMKjr","flags": {},"type": 0,"text": "The Test","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [76, 76],"drawn": false},{"_id": "ZwCva9kUA1DOkc4E","flags": {},"type": 0,"text": "Last Rites","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [77, 77],"drawn": false},{"_id": "SNYcp0tZp3Xnrmyh","flags": {},"type": 0,"text": "Gwendolyn","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [78, 78],"drawn": false},{"_id": "ussvw0K2DyNtxsZR","flags": {},"type": 0,"text": "The Dancing Edge","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [79, 79],"drawn": false},{"_id": "tNb3RHGBIoSMug70","flags": {},"type": 0,"text": "Leg-Biter","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [80, 80],"drawn": false},{"_id": "g4ZlnYEJbXlpumTy","flags": {},"type": 0,"text": "Deus vult","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [81, 81],"drawn": false},{"_id": "gLP79Vc2IcBskOcL","flags": {},"type": 0,"text": "Black Razor","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [82, 82],"drawn": false},{"_id": "gWpXraQ0TjcsDIoW","flags": {},"type": 0,"text": "Crimson Wind","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [83, 83],"drawn": false},{"_id": "1pHAOv12IfwLwogy","flags": {},"type": 0,"text": "Head Hunter","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [84, 84],"drawn": false},{"_id": "EAdAu0jldP0lhiFL","flags": {},"type": 0,"text": "Heart Seeker","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [85, 85],"drawn": false},{"_id": "GVfNE9xcNOCUjXXq","flags": {},"type": 0,"text": "Scarlet Rain","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [86, 86],"drawn": false},{"_id": "vBMt2tyTXGMUyf0g","flags": {},"type": 0,"text": "Shield Breaker","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [87, 87],"drawn": false},{"_id": "DdsXdzSBaaEXoTan","flags": {},"type": 0,"text": "Silence","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [88, 88],"drawn": false},{"_id": "YRPThrWtLB9cZMbe","flags": {},"type": 0,"text": "Soul Breaker","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [89, 89],"drawn": false},{"_id": "gtelLz6xNrpqxuKi","flags": {},"type": 0,"text": "Skull Splitter","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [90, 90],"drawn": false},{"_id": "39xZsIw6KDFcWAz3","flags": {},"type": 0,"text": "The Sun Sword","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [91, 91],"drawn": false},{"_id": "RyltmHXM8baosRaD","flags": {},"type": 0,"text": "Vengeance","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [92, 92],"drawn": false},{"_id": "1W6lONEkN4T76pt2","flags": {},"type": 0,"text": "The Maw","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [93, 93],"drawn": false},{"_id": "Tmiek8qeOFq6K5m9","flags": {},"type": 0,"text": "Curse Crusher","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [94, 94],"drawn": false},{"_id": "RMJ30WfSABDoVHix","flags": {},"type": 0,"text": "Blood Spiller","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [95, 95],"drawn": false},{"_id": "hOI84wI5wawkimPq","flags": {},"type": 0,"text": "Author of Death","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [96, 96],"drawn": false},{"_id": "VMZWgvHT3BYONS0A","flags": {},"type": 0,"text": "Sloth’s Bane","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [97, 97],"drawn": false},{"_id": "SnZ0lxre2ujzzkI5","flags": {},"type": 0,"text": "Backblade","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [98, 98],"drawn": false},{"_id": "gxfhF2FSSUGZI8jd","flags": {},"type": 0,"text": "Callous Cleaver","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [99, 99],"drawn": false},{"_id": "oz304XH6C0xTz1bX","flags": {},"type": 0,"text": "The Highroller","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [100, 100],"drawn": false}],"formula": "1d101","replacement": true,"displayRoll": true,"_id": "oBKDA6UPuaudJ38K"} 2 | -------------------------------------------------------------------------------- /independent_tables/100-aquatic-items.json: -------------------------------------------------------------------------------- 1 | {"name": "Aquatic Items","description": "One hundred special aquatic items!Credit: http://dndspeak.com", "permission": {"default": 0},"flags": {},"results": [{"_id": "5mRL2y26ylKQ5rte","flags": {},"type": 0,"text": "Ring of Calamari: A silver ring with an octopus on it with emerald eyes. Gives you the ability to use the darkness spell 1d4 times per day rolled at dawn.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [1, 1],"drawn": false},{"_id": "J4rYSTfyBjlKwH8j","flags": {},"type": 0,"text": "Dolphin’s Tooth Crown: An ornate crown made of dolphin bones and teeth. Gives you advantage on Perception, Investigation, and Nature checks while underwater.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [2, 2],"drawn": false},{"_id": "3OkpIG8mEet3lxs0","flags": {},"type": 0,"text": "Cup of Yises: when you fill it with water, it transforms it into wine ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [3, 3],"drawn": false},{"_id": "rgoIlALdNCngTKxE","flags": {},"type": 0,"text": "Blue Bag of Tricks: Like the standard item but filled with shells that when thrown turn into (d8): 1) sea horse, 2) dolphin, 3) quipper, 4) constrictor snake, 5) giant sea horse, 6) reef shark, 7) giant octopus, 8) hunter shark ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [4, 4],"drawn": false},{"_id": "Sw2VqF2k9S3hwaBU","flags": {},"type": 0,"text": "Staff of Flowing Water: Requires attunement. An ornate blue staff. The head is a large blue sapphire with a blue and gold setting in the shape of a cresting wave. While attuned to the staff, you can cast Create or Destroy Water, Water Breathing, Water Walk, Control Water without needing the required spell components. Additionally, up to three times per day, you can use the staff as if it were a Decanter of Endless Water.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [5, 5],"drawn": false},{"_id": "fJJDdsXySJ64URzE","flags": {},"type": 0,"text": "Message In A Bottle: A glass bottle with a piece of paper inside that details the truth behind a mysterious murder. ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [6, 6],"drawn": false},{"_id": "z0UzPw5WjSclpKlE","flags": {},"type": 0,"text": "A Talking Crab: This little guy can speak common and says he was cursed by a warlock. He wants the party to break the curse, but has no idea how that could be done in the first place. ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [7, 7],"drawn": false},{"_id": "9HRGZM0sbvnpxcqm","flags": {},"type": 0,"text": "Neptune’s “First” Trident: A metal trident with a poorly carved “Neptune’s” on the shaft. Allows the holder to summon an incorporeal giant seahorse to ride while in water. ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [8, 8],"drawn": false},{"_id": "AknCIJHyWcmeofuO","flags": {},"type": 0,"text": "Spear of Lilia: A green-copper spear with a tip of obsidian. When this spear deals enough damage to reduce a creature to 0 HP, the wielder may choose to instead bring the creature to 1 HP. This may be used once per short rest.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [9, 9],"drawn": false},{"_id": "3pmUELohv7lOwlyL","flags": {},"type": 0,"text": "The Ocean’s Testament: A book bound in leaves of seaweed. The book grants 1d8 bonus radiant damage to any melee attacks, 1d10 bonus radiant damage to any ranged attacks, and 2d6 bonus healing to any healing spells cast through it. Each bonus removes 1 charge, the Testament contains 7 charges, 1d4 regained at dawn. If all charges are expelled, use the usual artifact charge rules. ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [10, 10],"drawn": false},{"_id": "co0BductjQnN1DeQ","flags": {},"type": 0,"text": "Second Elder’s Wrath: A mundane-looking bow embedded with clusters of gems at either end and strung with kelp. This bow may be fired underwater at no penalty, and deals a bonus 1d6 piercing damage to any creatures hit while underwater.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [11, 11],"drawn": false},{"_id": "XChQsbH3tQGMRIUI","flags": {},"type": 0,"text": "Brinelord’s Bane: A silvery steel blade, with the hilt embellished with gold. The blade must be submerged in seawater once a week or else it crumbles to dust. The blade gives advantage to all attack rolls against elementals, undead, fiends, constructs, and fey. Damage against these creatures gains 1d4 damage for every year that the blade has been held by the same wielder. ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [12, 12],"drawn": false},{"_id": "lwaJx0wG69A4KY1i","flags": {},"type": 0,"text": "Repentance: A small, purple gem. Roll a D20; if the roll is a 20, roll a D100; if the roll is a 1 or a 100, the wielder now has 1d4-1, minimum of 1, wishes. May only be used once every 30 days. Once the wishes are dispensed, the gem becomes inert for 3 years.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [13, 13],"drawn": false},{"_id": "0r9usT73hSiZyTDF","flags": {},"type": 0,"text": "Mask of Water Breathing: Not what you think. This mask was made to allow aquatic sentient beings to breath water on land. Unweary travelers have drown because of that slight misunderstanding.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [14, 14],"drawn": false},{"_id": "OScLh8AVRHOdm1Hq","flags": {},"type": 0,"text": "Snorkeling kit: Made of rubber, glass and a pipe. Can breath indefinitely while within two feet of surface, advantage on perception underwater.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [15, 15],"drawn": false},{"_id": "uaL68ngCTMfqcYHu","flags": {},"type": 0,"text": "Castanets: A percussion based instrument made up of a pair concave seashells attached on the edge by a string. When pinched together they make a clicking noise.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [16, 16],"drawn": false},{"_id": "FKjKran9BJlGAyHD","flags": {},"type": 0,"text": "Kelp Armor: When dry the kelp provides no more protection than light robes. But when underwater or wet it provides heavy armor protection at no movement penalty.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [17, 17],"drawn": false},{"_id": "FfJQjtJwfRo16Y3e","flags": {},"type": 0,"text": "Trilobiter: A naturally formed sword, older than man. Within it is a plethora of deep see fossils, sharpened by volcanoes and waves. This sword is unbreakable by any non-magic means.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [18, 18],"drawn": false},{"_id": "s7tiaMkkn2k709pC","flags": {},"type": 0,"text": "Salt Bomb: A crystallized dynamite stick with a waterproof fuse. When ignited, it crystallizes everything within a 10 ft circle radius. Everything within a 20 ft radius is heavily dusted in salt. A fuse can be cut short enough for the dynamite to detonate in the same round or long enough to take several minutes to detonate.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [19, 19],"drawn": false},{"_id": "LSXKAXxWFaGx3nnZ","flags": {},"type": 0,"text": "Ship in a Bottle: A dusty old bottle with a tiny pirate ship inside. When the cork is removed a full sized pirate ship explodes out and shatters the bottle. Ship is fully manned by hostile pirates. ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [20, 20],"drawn": false},{"_id": "hRWboiYOaJu6eZSi","flags": {},"type": 0,"text": "Captain Curly’s Crude Crusty Cup: The small metal cup turns any fresh water into salt water when filled.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [21, 21],"drawn": false},{"_id": "anhhw8wm9DPlpScV","flags": {},"type": 0,"text": "Shell Armour: Shells fashioned in scale style, covers one arm. Light armour; +1 ac against slashing & bludgeoning attacks.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [22, 22],"drawn": false},{"_id": "FOZm4miJMt4f4TQn","flags": {},"type": 0,"text": "Conch Helm: +1 ac against slashing & bludgeoning attacks. Wearer can hear the ocean by listening.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [23, 23],"drawn": false},{"_id": "BtdWw08zNTuTPZVu","flags": {},"type": 0,"text": "Puffer fish poison: 1d12 poison damage.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [24, 24],"drawn": false},{"_id": "mM7MfR2XTbSUc5o1","flags": {},"type": 0,"text": "Electric Eel Squeezings: Used as a poison. 1d12 electric damage. ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [25, 25],"drawn": false},{"_id": "Q7azsjw5EqRLgPq9","flags": {},"type": 0,"text": "Sea Glass weapon: As durable as any steel equivalent, but lighter and much prettier. May come in enchanted form.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [26, 26],"drawn": false},{"_id": "29rW42MV51ZY4tml","flags": {},"type": 0,"text": "Seal Skin Parka: Buoyant and streamlined, gives bonus to swimming (athletics) checks (e.g. +1, advantage.)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [27, 27],"drawn": false},{"_id": "GpFMFzNGhcxmsy01","flags": {},"type": 0,"text": "Merflippers: Movement speed of wearer is doubled in water.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [28, 28],"drawn": false},{"_id": "0KP70xB4j6otomDA","flags": {},"type": 0,"text": "Shell Shield: Shield made from the shell of a giant clam or turtle. Standard stats at half weight.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [29, 29],"drawn": false},{"_id": "M3oNfIgcxQWRHkrM","flags": {},"type": 0,"text": "Conch Ocarina: Instrument, flute proficiency may apply. ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [30, 30],"drawn": false},{"_id": "fZNG8PwrZwVx0uTG","flags": {},"type": 0,"text": "Sword of Triton: A pirate sword with a pommel made from a large, blue gem. The wielder may control a sea-faring vessel they stand on from any point as if they were at it’s helm (i.e. steer the wheel of a ship from the crow’s nest.) ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [31, 31],"drawn": false},{"_id": "wO0U2NsuKz0NBhZ3","flags": {},"type": 0,"text": "Coral Blade: Sharpened blade made with magically hardened coral. Longsword stats + 1d6 lightning, finesse. Requires attunement. ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [32, 32],"drawn": false},{"_id": "Ld93ucxDBRzw2lYl","flags": {},"type": 0,"text": "Scroll of Kelp: An arcane scroll that, when activated, entangles one enemy of the user’s choosing in 50 feet of soaking wet sea weed. Required a STR check of 13 or higher to break. u","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [33, 33],"drawn": false},{"_id": "pNFQVmdTeL20PzKT","flags": {},"type": 0,"text": "The Megalodon: A sword made from two planks of wood and a set of razor sharp sharks teeth. Deals 2d4 slashing damage. May appear as a great sword of same design, dealing 3d4 slashing. ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [34, 34],"drawn": false},{"_id": "SzyEDvOAy5JwJA34","flags": {},"type": 0,"text": "Shark Tooth Spear: When a creature is struck by this weapon the shark-tooth at the end breaks off and the creature bleeds each turn, if capable. A shark is summoned and attacks the bleeding creature if in water deep enough to allow. The tooth regrows every long rest.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [35, 35],"drawn": false},{"_id": "4PvifT6726bT77fn","flags": {},"type": 0,"text": "Staff of the Deep: Magical quarterstaff +2; on a critical hit oily black tentacles burst from the chest dealing an additional 2d12 necrotic damage, if a foe is killed with a critical hit, the body explodes in a 10 foot radius dealing 2d6 piercing damage to all foes or half on a dc 15 dexterity save, the area then fills with darkness for two turns.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [36, 36],"drawn": false},{"_id": "MazK9KhyAbfwaGtW","flags": {},"type": 0,"text": "The Pearl Trident: A great golden trident embellished with white pearls. On land, the trident deals 3d4 piercing damage. However, when the trident is within 5 meters of a water source, the damage jumps to 6d4 piercing damage, +1d6 radiant damage, which manifests in the form of glowing golden lights around the tips of the weapon.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [37, 37],"drawn": false},{"_id": "NDYicKgMvOHIo1rq","flags": {},"type": 0,"text": "The Sea-folk Scissors: A copper dome with a handle inside, meant to be worn over the hand. The top of the dome boasts a foot-long copper pole, terminating in a flat semicircular axe head, sharpened to a razor edge. The weapon deals 2d6 slashing damage, and provides +1 to the users AC.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [38, 38],"drawn": false},{"_id": "wM0WJV0Ek0Dd3h53","flags": {},"type": 0,"text": "Pistol Shrimp Power Bracelet: A bracelet of crustacean shell, color changes with the time, is always vibrant. Free action, if the bracelet hand is free, the bracelet can become a large shrimp claw that overtakes the entire hand. As an action, the claw can shoot out 1d4 balls of scalding water that deal 1d4 bludgeoning damage on impact and then 1d4 of fire damage. Has 10 charges, recovers 1d4 charges while submerged in water over 8 hours.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [39, 39],"drawn": false},{"_id": "a24eCfPJ69z5LElN","flags": {},"type": 0,"text": "Kelp Bracer of Rebreathing: While in water, gain +1 to AC and can hold breath underwater for twice as long.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [40, 40],"drawn": false},{"_id": "8nTRov2ot3ozROKc","flags": {},"type": 0,"text": "Driftwood Shield: When soaked in ocean water, gain +1 AC.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [41, 41],"drawn": false},{"_id": "KToZpxlhZEq3LB50","flags": {},"type": 0,"text": "Fishscale flippers: Gain +20 ft movement in water. Can take the dodge action as a bonus action when fully submerged in water.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [42, 42],"drawn": false},{"_id": "ffDhw6rEBDlArAPu","flags": {},"type": 0,"text": "Singing Conch: Once per day, can be used to take advantage on soothing an aquatic beast w/ animal handling check.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [43, 43],"drawn": false},{"_id": "sJOViRLQNreJbzRe","flags": {},"type": 0,"text": "Sticky Seeds: These seeds, when fertilized by the oceans waters grow into small throwable sticky grenades; DC 15 Dex save on dodge, DC 17 Strength save to escape. Cover a 1 sqft area.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [44, 44],"drawn": false},{"_id": "Z7bRW8tsSkRs0yjX","flags": {},"type": 0,"text": "Porthole: A 1ft wide metal hoop, bound to a porthole in the hull of a sunken ship. It has a pool-like surface in place of glass, and acts as a portal to that same sunken wreck. If held with both hands, a torrent of salt water is pushed through from both sides, doing bludgeoning damage and pushing back anything in it’s path. STR check each turn or dropped.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [45, 45],"drawn": false},{"_id": "1lZVVcxAe2afbpyE","flags": {},"type": 0,"text": "The Merfolk King’s Merman Fins: Silvery blue and made of some sort of magically infused fabric. These shoes are awkward and cumbersome to wear, -5 ft maximum movement on land +30 ft underwater movement speed, when underwater the wearer appears to have one single fin in the place of legs.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [46, 46],"drawn": false},{"_id": "laAo07UtAxFnC34i","flags": {},"type": 0,"text": "Diving Helm: Ancient and rusted. Gain water breathing for as long as this helmet is worn, as a bonus action underwater you may choose to sink 60 ft; whenever a foe critically hits you, take an additional 1d6 damage.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [47, 47],"drawn": false},{"_id": "PlviCfN7DEvOERK9","flags": {},"type": 0,"text": "Sharktooth Necklace: A simple twine necklace with teeth from at least 5 different types of shark. Whenever you take a melee attack action you may also take a bite attack as part of that action as your head temporarily takes on the form of a great white shark’s. Bite","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [48, 48],"drawn": false}],"formula": "1d49","replacement": true,"displayRoll": true,"_id": "u3oGnyv0NgEoyfxF"} 2 | -------------------------------------------------------------------------------- /independent_tables/100-things-in-an-ogres-pockets.json: -------------------------------------------------------------------------------- 1 | {"name": "Things in an Ogre’s Pockets","description": "One hundred things you might find in the pockets of an OgreCredit: http://dndspeak.com", "permission": {"default": 0},"flags": {},"results": [{"_id": "QgabSC2H3vdreGm9","flags": {},"type": 0,"text": "Tombstone","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [1, 1],"drawn": false},{"_id": "LPaXEbNsAA7fyixL","flags": {},"type": 0,"text": "Wagon Wheel","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [2, 2],"drawn": false},{"_id": "egyJGgwBNordi1Ln","flags": {},"type": 0,"text": "Wooden Oar","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [3, 3],"drawn": false},{"_id": "o5QJvXXZD9kzUdyY","flags": {},"type": 0,"text": "Giant Drum","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [4, 4],"drawn": false},{"_id": "lx6DilokQlO9CJXp","flags": {},"type": 0,"text": "Tree Stump","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [5, 5],"drawn": false},{"_id": "6yxqgiAb832EfVpS","flags": {},"type": 0,"text": "Boulder","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [6, 6],"drawn": false},{"_id": "3UGLqdzvlUbLv5gf","flags": {},"type": 0,"text": "Beehive","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [7, 7],"drawn": false},{"_id": "7eOPibBpgnB2H757","flags": {},"type": 0,"text": "Wooden Barrel","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [8, 8],"drawn": false},{"_id": "61mrokVrlTD2SJFV","flags": {},"type": 0,"text": "Dragon Scale","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [9, 9],"drawn": false},{"_id": "grFIKMsfnffUjXiG","flags": {},"type": 0,"text": "Mushrooms","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [10, 10],"drawn": false},{"_id": "hqF8XFyaM4EZyDTD","flags": {},"type": 0,"text": "Tree Branch Toothpick","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [11, 11],"drawn": false},{"_id": "ykrz7sd8pBUa91oI","flags": {},"type": 0,"text": "Bag of Stolen Wheat","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [12, 12],"drawn": false},{"_id": "UjeLnPFCAgUltBfB","flags": {},"type": 0,"text": "Javelins","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [13, 13],"drawn": false},{"_id": "F0GBxrttvOmKxltB","flags": {},"type": 0,"text": "Wooden Spear","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [14, 14],"drawn": false},{"_id": "9N7qbu4Mu1oMA5Y3","flags": {},"type": 0,"text": "Cheese Wheel","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [15, 15],"drawn": false},{"_id": "5r0cq51K9mRsdQfJ","flags": {},"type": 0,"text": "Bag of Colorful Pebbles","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [16, 16],"drawn": false},{"_id": "qUTzo9GfiJoJMLeM","flags": {},"type": 0,"text": "Acorns","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [17, 17],"drawn": false},{"_id": "gsSzW0MyLt4pD58i","flags": {},"type": 0,"text": "Giant Waterskin","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [18, 18],"drawn": false},{"_id": "ZW1405a1ckJbTvgC","flags": {},"type": 0,"text": "Mammoth Tusk","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [19, 19],"drawn": false},{"_id": "h1lHFiE4TQ718iDF","flags": {},"type": 0,"text": "Boat Anchor","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [20, 20],"drawn": false},{"_id": "bWsAUZRIEPTFt5Xc","flags": {},"type": 0,"text": "Bag of Pipeweed","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [21, 21],"drawn": false},{"_id": "tvZt0Nqqvm6QOn08","flags": {},"type": 0,"text": "Giant Club","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [22, 22],"drawn": false},{"_id": "UcNrC3Phj8B0F1iT","flags": {},"type": 0,"text": "Tattered Banners","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [23, 23],"drawn": false},{"_id": "l1IjSaTjknFo4k1w","flags": {},"type": 0,"text": "Live Goat","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [24, 24],"drawn": false},{"_id": "QECV0HJ53kShh4Cd","flags": {},"type": 0,"text": "Empty Bottle","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [25, 25],"drawn": false},{"_id": "8qGqFr0gi8aWfni9","flags": {},"type": 0,"text": "Large Bag of Salt","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [26, 26],"drawn": false},{"_id": "8azJnJcGyBprDAti","flags": {},"type": 0,"text": "Large Arrowheads","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [27, 27],"drawn": false},{"_id": "5ZhILZXJEBMagqBS","flags": {},"type": 0,"text": "Bag of Leather","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [28, 28],"drawn": false},{"_id": "tLRGBs9d5cK2iJZQ","flags": {},"type": 0,"text": "Cured Meat","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [29, 29],"drawn": false},{"_id": "JJjsTlNQmebyPhK0","flags": {},"type": 0,"text": "Giant Tooth","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [30, 30],"drawn": false},{"_id": "aKChYbhRmn9cAfU7","flags": {},"type": 0,"text": "Decaying Book","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [31, 31],"drawn": false},{"_id": "8CQvPVOz4YuDg5Fj","flags": {},"type": 0,"text": "Cask of Ale","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [32, 32],"drawn": false},{"_id": "RBDAWRPH46hypcEu","flags": {},"type": 0,"text": "Incomprehensible Notes","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [33, 33],"drawn": false},{"_id": "IR2x3i4BX5i0W9qp","flags": {},"type": 0,"text": "Makeshift Pillow","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [34, 34],"drawn": false},{"_id": "AggcqDJlUNDueFUc","flags": {},"type": 0,"text": "Elf Bones","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [35, 35],"drawn": false},{"_id": "VjpX3z1jFids3F83","flags": {},"type": 0,"text": "Barrel of Honey","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [36, 36],"drawn": false},{"_id": "xeDWfACWvKe5NKBv","flags": {},"type": 0,"text": "Bag of Onions","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [37, 37],"drawn": false},{"_id": "aRKjatAu2Tm2UxI4","flags": {},"type": 0,"text": "Cauldron","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [38, 38],"drawn": false},{"_id": "heAgkPX3lLV2loGV","flags": {},"type": 0,"text": "Animal Pelt","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [39, 39],"drawn": false},{"_id": "uPeZdAoxgwcCdrOW","flags": {},"type": 0,"text": "Huge Fish","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [40, 40],"drawn": false},{"_id": "f3yGOb38WIIzdQCo","flags": {},"type": 0,"text": "Dragon Skull","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [41, 41],"drawn": false},{"_id": "rrxE33dykzxOtdqP","flags": {},"type": 0,"text": "Berries","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [42, 42],"drawn": false},{"_id": "g7UaqS7knFd7x9eQ","flags": {},"type": 0,"text": "Collection of Giant Snail Shells","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [43, 43],"drawn": false},{"_id": "w7ESmBMCFRih3txn","flags": {},"type": 0,"text": "An Unhappy Lynx","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [44, 44],"drawn": false},{"_id": "3IUvYK4QdiwWQFUS","flags": {},"type": 0,"text": "Firewood","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [45, 45],"drawn": false},{"_id": "KtIUSqHpPmEsCi50","flags": {},"type": 0,"text": "Ram Horns","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [46, 46],"drawn": false},{"_id": "X9OLtb2xzrF1DAI1","flags": {},"type": 0,"text": "Bag of Pine Needles","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [47, 47],"drawn": false},{"_id": "uPSFIpIciXXZYidX","flags": {},"type": 0,"text": "Iron Spikes","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [48, 48],"drawn": false},{"_id": "NvPoPQVcFY0EjonN","flags": {},"type": 0,"text": "Half of a Horse/Goat","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [49, 49],"drawn": false},{"_id": "EvRbSx4W6IYqnVpy","flags": {},"type": 0,"text": "Huge Hammock","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [50, 50],"drawn": false},{"_id": "7sCbzZxpo9yLqmuM","flags": {},"type": 0,"text": "Giant Eating Utensils","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [51, 51],"drawn": false},{"_id": "pyBsjgFcMDlaOa7X","flags": {},"type": 0,"text": "River Stones","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [52, 52],"drawn": false},{"_id": "6N0AA6b9RRwUyVrG","flags": {},"type": 0,"text": "10 ft. of Chain","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [53, 53],"drawn": false},{"_id": "WtQ7cICoB1SAr6Vb","flags": {},"type": 0,"text": "Scraps of Bread","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [54, 54],"drawn": false},{"_id": "ua2CCo17tYcO7BSs","flags": {},"type": 0,"text": "Barrel of Grog","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [55, 55],"drawn": false},{"_id": "JwWrc9mBWsKOmO9n","flags": {},"type": 0,"text": "Fish Bones","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [56, 56],"drawn": false},{"_id": "i59vKmlaPc1EySfo","flags": {},"type": 0,"text": "Bag of Seeds","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [57, 57],"drawn": false},{"_id": "bAt7RBtwjbpi35Hl","flags": {},"type": 0,"text": "Large Candle","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [58, 58],"drawn": false},{"_id": "guvpO5cbTmliQfpu","flags": {},"type": 0,"text": "Live Chicken","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [59, 59],"drawn": false},{"_id": "oaENu3itAuRVxoWr","flags": {},"type": 0,"text": "Barn Door","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [60, 60],"drawn": false},{"_id": "m6HkezJNKwzeEKe4","flags": {},"type": 0,"text": "Huge Frog","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [61, 61],"drawn": false},{"_id": "yy1SHLqhmCRXsYiM","flags": {},"type": 0,"text": "1d20 gps","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [62, 62],"drawn": false},{"_id": "72iwWbqkJtz9vded","flags": {},"type": 0,"text": "Fishing Net","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [63, 63],"drawn": false},{"_id": "agS5rYAAgzEXuL6Z","flags": {},"type": 0,"text": "Throwing Rocks","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [64, 64],"drawn": false},{"_id": "KdbG4JWGcUlu03jR","flags": {},"type": 0,"text": "Cabbages","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [65, 65],"drawn": false},{"_id": "Uo1Z3DWHdOiExX5e","flags": {},"type": 0,"text": "Snot Rag","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [66, 66],"drawn": false},{"_id": "52t87RiteXWmbcdZ","flags": {},"type": 0,"text": "Bag of Stolen Vegetables","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [67, 67],"drawn": false},{"_id": "831JAACkEhoikqLG","flags": {},"type": 0,"text": "Cooking Pot","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [68, 68],"drawn": false},{"_id": "npnM9UjSSQeHnJFM","flags": {},"type": 0,"text": "Large Iron Key","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [69, 69],"drawn": false},{"_id": "u9X6y8uk1UowVkF1","flags": {},"type": 0,"text": "Mutton","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [70, 70],"drawn": false},{"_id": "c3Yuv6ZwNKIG7IgR","flags": {},"type": 0,"text": "50 ft. of Hempen Rope","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [71, 71],"drawn": false},{"_id": "e1WWYxZRxmOy7ISD","flags": {},"type": 0,"text": "Arm of a Statue (Back Scratcher)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [72, 72],"drawn": false},{"_id": "jvAoeYthazWo7Mdg","flags": {},"type": 0,"text": "Broken Compass","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [73, 73],"drawn": false},{"_id": "JtQVcWRP3BLZArA3","flags": {},"type": 0,"text": "Barrel of Oil","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [74, 74],"drawn": false},{"_id": "7Ts32LZK1vmdrQ09","flags": {},"type": 0,"text": "Crude Map of Area","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [75, 75],"drawn": false},{"_id": "OpgquLoNdnVOQOIz","flags": {},"type": 0,"text": "Bag of Coal","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [76, 76],"drawn": false},{"_id": "ONsxtoBXExi7k7Z0","flags": {},"type": 0,"text": "Jar of Fishing Bait","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [77, 77],"drawn": false},{"_id": "xQBNoVcVeNfSsesl","flags": {},"type": 0,"text": "Humanoid Skulls","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [78, 78],"drawn": false},{"_id": "vudjxaAnxOwa9x8r","flags": {},"type": 0,"text": "Gigantic Egg","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [79, 79],"drawn": false},{"_id": "Z1eRUQOCZtEHJylQ","flags": {},"type": 0,"text": "Shiny Rock","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [80, 80],"drawn": false},{"_id": "wahye0TOyGZ3l3Zp","flags": {},"type": 0,"text": "Large Makeshift Shovel","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [81, 81],"drawn": false},{"_id": "Ex031fCLwqQsMNWf","flags": {},"type": 0,"text": "Tree Roots","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [82, 82],"drawn": false},{"_id": "JI05IYclUa9icZAD","flags": {},"type": 0,"text": "Dead Giant Rats","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [83, 83],"drawn": false},{"_id": "pdLotFplf9qqPKjl","flags": {},"type": 0,"text": "Bag of Herbs","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [84, 84],"drawn": false},{"_id": "P3WwdXJl5TmK3p3c","flags": {},"type": 0,"text": "Pick Axe","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [85, 85],"drawn": false},{"_id": "cxMU6Wz0FJkdj8Z8","flags": {},"type": 0,"text": "Emerald","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [86, 86],"drawn": false},{"_id": "O3ta4OOVQSi6kjUd","flags": {},"type": 0,"text": "Leather Scraps","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [87, 87],"drawn": false},{"_id": "dP8YASQDIx8q0FP8","flags": {},"type": 0,"text": "Large Bedroll","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [88, 88],"drawn": false},{"_id": "Ih4u049qs4L55yQf","flags": {},"type": 0,"text": "Bear Skin Rug","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [89, 89],"drawn": false},{"_id": "PqrPLEfHWxxtTRlb","flags": {},"type": 0,"text": "Giant Torch","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [90, 90],"drawn": false},{"_id": "4TmVBW775mGTS8az","flags": {},"type": 0,"text": "Loincloth","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [91, 91],"drawn": false},{"_id": "qXqOChavgbuSoEs2","flags": {},"type": 0,"text": "Food Scraps","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [92, 92],"drawn": false},{"_id": "vKBNDuw15qFoXF1i","flags": {},"type": 0,"text": "Giant Hand Axe","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [93, 93],"drawn": false},{"_id": "sNRVm7PpgdjxbJSc","flags": {},"type": 0,"text": "Broken Fishing Rod","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [94, 94],"drawn": false},{"_id": "hcoNRZ9WOVB8THfH","flags": {},"type": 0,"text": "Large Apron","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [95, 95],"drawn": false},{"_id": "bHkE3YkBb44dtWAg","flags": {},"type": 0,"text": "Rusted Armor","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [96, 96],"drawn": false},{"_id": "fCPrtRlqLVKLfPLm","flags": {},"type": 0,"text": "Stone Maul","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [97, 97],"drawn": false},{"_id": "tpyIP8hrc8ArK9MZ","flags": {},"type": 0,"text": "Jar of Bugs","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [98, 98],"drawn": false},{"_id": "MLxkme94tXI73A1c","flags": {},"type": 0,"text": "Stone Knife","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [99, 99],"drawn": false},{"_id": "DkXGCl4ELOsaSf2L","flags": {},"type": 0,"text": "A live, scared Dwarf","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [100, 100],"drawn": false}],"formula": "1d101","replacement": true,"displayRoll": true,"_id": "q8csuKwm2wo2D5kn"} 2 | -------------------------------------------------------------------------------- /independent_tables/100-dwarven-clan-names.json: -------------------------------------------------------------------------------- 1 | {"name": "Dwarven Clan Names","description": "One hundred different dwarves clan names.Credit: http://dndspeak.com", "permission": {"default": 0},"flags": {},"results": [{"_id": "h8CpqKBQjvMhWUF1","flags": {},"type": 0,"text": "The Axebreakers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [1, 1],"drawn": false},{"_id": "hJIZSTBsBnQUmDKU","flags": {},"type": 0,"text": "The Copperpots","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [2, 2],"drawn": false},{"_id": "wucxu6wCothRQAOj","flags": {},"type": 0,"text": "The Mithril-born","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [3, 3],"drawn": false},{"_id": "alx6iMKHOViQwlo7","flags": {},"type": 0,"text": "The Silverbeards","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [4, 4],"drawn": false},{"_id": "BKUNaaIpBrSSTXwN","flags": {},"type": 0,"text": "The Blue Mountain Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [5, 5],"drawn": false},{"_id": "603QmbqLXBN6CNY0","flags": {},"type": 0,"text": "The Craghaven Dwarves","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [6, 6],"drawn": false},{"_id": "hWaxZ3Ovf4cGiVOH","flags": {},"type": 0,"text": "The Ironhelms","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [7, 7],"drawn": false},{"_id": "gShxzoOPLhV3aGuN","flags": {},"type": 0,"text": "The Craghold Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [8, 8],"drawn": false},{"_id": "6kkrQj3DUAFoNibc","flags": {},"type": 0,"text": "The Crannog Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [9, 9],"drawn": false},{"_id": "wkAlGlnx8qLbpxDA","flags": {},"type": 0,"text": "The Boatmurdered","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [10, 10],"drawn": false},{"_id": "rQLuvRydfUSaN7tg","flags": {},"type": 0,"text": "The Alderfists","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [11, 11],"drawn": false},{"_id": "gumBKapIppHys5TE","flags": {},"type": 0,"text": "The Ashenforge","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [12, 12],"drawn": false},{"_id": "TnBPxG7naqMQfBxl","flags": {},"type": 0,"text": "The Birchstone","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [13, 13],"drawn": false},{"_id": "uD6pBASVMY4fpw0x","flags": {},"type": 0,"text": "The Elderbeards","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [14, 14],"drawn": false},{"_id": "OEVwZgTczk4XDI8Z","flags": {},"type": 0,"text": "The Hazelaxes","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [15, 15],"drawn": false},{"_id": "di0zjaiARnps2XPi","flags": {},"type": 0,"text": "The Hollystrak","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [16, 16],"drawn": false},{"_id": "O2u7KXUXmR50OfRc","flags": {},"type": 0,"text": "The Junipkil","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [17, 17],"drawn": false},{"_id": "b4Q3yZLzSW298cX0","flags": {},"type": 0,"text": "The Oakenshield","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [18, 18],"drawn": false},{"_id": "W5dPwgs0V7iByQMc","flags": {},"type": 0,"text": "The Rowangga","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [19, 19],"drawn": false},{"_id": "L7OzEVpUdplfaVOY","flags": {},"type": 0,"text": "The Willowgart","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [20, 20],"drawn": false},{"_id": "ijdOrBebyb92rVEe","flags": {},"type": 0,"text": "The Yewhammer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [21, 21],"drawn": false},{"_id": "YkLIL2mJBY4abui1","flags": {},"type": 0,"text": "The RockRacks","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [22, 22],"drawn": false},{"_id": "LreM8oxCpRrI0SUP","flags": {},"type": 0,"text": "The StoneBorns","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [23, 23],"drawn": false},{"_id": "GihU8rCTxs84BJZp","flags": {},"type": 0,"text": "The HammerPants","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [24, 24],"drawn": false},{"_id": "XmJ7zR2fErAYOi8d","flags": {},"type": 0,"text": "The IronSets","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [25, 25],"drawn": false},{"_id": "9bqUrGpOetl1PL0o","flags": {},"type": 0,"text": "The Goldbounds","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [26, 26],"drawn": false},{"_id": "xNI6kRbTKljyhKG7","flags": {},"type": 0,"text": "The CopperTones","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [27, 27],"drawn": false},{"_id": "wE45jGDo8NtwRyxY","flags": {},"type": 0,"text": "The DarkSeekers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [28, 28],"drawn": false},{"_id": "eEte1VaB1rHVf1rN","flags": {},"type": 0,"text": "The ForgeKeepers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [29, 29],"drawn": false},{"_id": "BOMYH9rMIoN2adCf","flags": {},"type": 0,"text": "The ShopSweepers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [30, 30],"drawn": false},{"_id": "celz481vnEOfzma9","flags": {},"type": 0,"text": "The BoozeBeards","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [31, 31],"drawn": false},{"_id": "mEsfMixO84QWV4Hu","flags": {},"type": 0,"text": "The Dûnhark","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [32, 32],"drawn": false},{"_id": "WqdZLxCEAuK28UZX","flags": {},"type": 0,"text": "The Khazad’amon","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [33, 33],"drawn": false},{"_id": "emYQBQZQTINqT5wQ","flags": {},"type": 0,"text": "The Golden Dwarves","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [34, 34],"drawn": false},{"_id": "2VMC2mZlCDh4IXZg","flags": {},"type": 0,"text": "The Orcshorn","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [35, 35],"drawn": false},{"_id": "MVxRrZAOS522wZHW","flags": {},"type": 0,"text": "The Hafgrey","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [36, 36],"drawn": false},{"_id": "kNZTd2acLmBgXZ0B","flags": {},"type": 0,"text": "The Hafduergar","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [37, 37],"drawn": false},{"_id": "Rrz7F46nu0v2ICwY","flags": {},"type": 0,"text": "The Sky Lords, Riders of Griffons","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [38, 38],"drawn": false},{"_id": "dMgX6i58Ft3CZYUf","flags": {},"type": 0,"text": "The Ramrider","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [39, 39],"drawn": false},{"_id": "lf5oO5ZyJHkAdllQ","flags": {},"type": 0,"text": "The Lords of the Gyre Mountains","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [40, 40],"drawn": false},{"_id": "L8jxZr3aOBx5HstG","flags": {},"type": 0,"text": "The Firebeards","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [41, 41],"drawn": false},{"_id": "FUvs61hrPGKRnSzy","flags": {},"type": 0,"text": "The Skyminer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [42, 42],"drawn": false},{"_id": "rqFqPB6EwfQ5R3Gk","flags": {},"type": 0,"text": "The Kharak’bast","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [43, 43],"drawn": false},{"_id": "J8ftm8pSNv9zwRAO","flags": {},"type": 0,"text": "The Gnarlbeards","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [44, 44],"drawn": false},{"_id": "odLB6YhKflZDkEvM","flags": {},"type": 0,"text": "The Quartzeaters","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [45, 45],"drawn": false},{"_id": "xes4ckVJ7VY0ILzM","flags": {},"type": 0,"text": "The McKnuckles","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [46, 46],"drawn": false},{"_id": "14uemF08PNfDSexh","flags": {},"type": 0,"text": "The Ironjaws","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [47, 47],"drawn": false},{"_id": "Fjej1goYsC1jKUvP","flags": {},"type": 0,"text": "The SureFoots","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [48, 48],"drawn": false},{"_id": "RaBAw8PbbwHZBnYd","flags": {},"type": 0,"text": "The LongWalkers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [49, 49],"drawn": false},{"_id": "Q5VmxLTCLrc5EUiC","flags": {},"type": 0,"text": "The Sons of Iron","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [50, 50],"drawn": false},{"_id": "25eiTlQsxFUStWA3","flags": {},"type": 0,"text": "The EarthChildren","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [51, 51],"drawn": false},{"_id": "Sst2PxzpfOWKelkI","flags": {},"type": 0,"text": "The Smiths (Pewter Smith, Gold Smith, Gun Smith)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [52, 52],"drawn": false},{"_id": "jWrMowZGRTWr8Zm6","flags": {},"type": 0,"text": "The Leadbelly","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [53, 53],"drawn": false},{"_id": "w7t0GF2kiNG76QT1","flags": {},"type": 0,"text": "The Gritsword","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [54, 54],"drawn": false},{"_id": "cKlHU0Gk3342M4Lo","flags": {},"type": 0,"text": "The Goldenbrace","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [55, 55],"drawn": false},{"_id": "huTCceirs05t4Mpy","flags": {},"type": 0,"text": "The Enemyfighters","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [56, 56],"drawn": false},{"_id": "j1wjxivxE1GOPk6m","flags": {},"type": 0,"text": "The Dirgebane","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [57, 57],"drawn": false},{"_id": "ERMDr66zkskKpsjV","flags": {},"type": 0,"text": "The Khag","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [58, 58],"drawn": false},{"_id": "03UeemD7GLxKEwjE","flags": {},"type": 0,"text": "The Akurkam","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [59, 59],"drawn": false},{"_id": "zJI173hZmt6HhBp3","flags": {},"type": 0,"text": "The Chazakül","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [60, 60],"drawn": false},{"_id": "2UL3x4VT8W8Wv10r","flags": {},"type": 0,"text": "The Grimsleepers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [61, 61],"drawn": false},{"_id": "bOieggmHW0ZaRXSC","flags": {},"type": 0,"text": "The Deep-Crag Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [62, 62],"drawn": false},{"_id": "SzJP6ehBb1qAj48l","flags": {},"type": 0,"text": "The Rockjaw Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [63, 63],"drawn": false},{"_id": "ACyMOD4CoFTNrkhh","flags": {},"type": 0,"text": "The Highcliff Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [64, 64],"drawn": false},{"_id": "dirH4rENmUuoYupF","flags": {},"type": 0,"text": "The Steel Whoole Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [65, 65],"drawn": false},{"_id": "hu43LI0UK206ApbH","flags": {},"type": 0,"text": "The Fissurefisher Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [66, 66],"drawn": false},{"_id": "CNs6b3rImXZ5kgLd","flags": {},"type": 0,"text": "The Dustbuster Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [67, 67],"drawn": false},{"_id": "gIyLMJ2DjbWCtW4z","flags": {},"type": 0,"text": "The Mountainhall Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [68, 68],"drawn": false},{"_id": "4VWIvhH2JscIovw6","flags": {},"type": 0,"text": "The Spiral Cavern Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [69, 69],"drawn": false},{"_id": "nYatfmauZoahsREL","flags": {},"type": 0,"text": "The Gravelgut Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [70, 70],"drawn": false},{"_id": "bkAxELtWAY16hKoB","flags": {},"type": 0,"text": "The Gritgobbler Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [71, 71],"drawn": false},{"_id": "GyU6EKMPvYBYaYOU","flags": {},"type": 0,"text": "The Spire Forge Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [72, 72],"drawn": false},{"_id": "in8SSyONgcl4fMn9","flags": {},"type": 0,"text": "The Totalay Hammard Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [73, 73],"drawn": false},{"_id": "jeD5TN0XguOg5kEZ","flags": {},"type": 0,"text": "The Mountain Homes","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [74, 74],"drawn": false},{"_id": "no6KY10LqBN0BgOR","flags": {},"type": 0,"text": "Clan Krakhammer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [75, 75],"drawn": false},{"_id": "5NAHxnJadeDJbDqv","flags": {},"type": 0,"text": "Clan Stoneshaft","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [76, 76],"drawn": false},{"_id": "TygMiUrmbJ5DzMMM","flags": {},"type": 0,"text": "Clan Goldtrickle","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [77, 77],"drawn": false},{"_id": "Bv1YGYvmROAo4ui3","flags": {},"type": 0,"text": "The Forgeworn","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [78, 78],"drawn": false},{"_id": "H0m0Lg4NjE9WH5t1","flags": {},"type": 0,"text": "The Mountainhewers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [79, 79],"drawn": false},{"_id": "UOr8RILVDXWXeFvY","flags": {},"type": 0,"text": "The Thunder Kings","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [80, 80],"drawn": false},{"_id": "okqEdh5SyXzNynOF","flags": {},"type": 0,"text": "The Stormhammers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [81, 81],"drawn": false},{"_id": "KWPmYKtBIFFrqxvW","flags": {},"type": 0,"text": "The Riverwrights","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [82, 82],"drawn": false},{"_id": "2dO2h1xeRnn4HnXG","flags": {},"type": 0,"text": "The Frostbeards","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [83, 83],"drawn": false},{"_id": "XZoP093iZtGk1qJB","flags": {},"type": 0,"text": "The Hammerdashers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [84, 84],"drawn": false},{"_id": "tHaCGNvdLuAoXQmg","flags": {},"type": 0,"text": "The Lords of the Crystal Caverns","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [85, 85],"drawn": false},{"_id": "OEUqbzaeLNozdU49","flags": {},"type": 0,"text": "The Goldbrewers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [86, 86],"drawn": false},{"_id": "Ei3nuvLMj6monUDa","flags": {},"type": 0,"text": "The Stormpeak","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [87, 87],"drawn": false},{"_id": "8PK2p9eKOK16oYqp","flags": {},"type": 0,"text": "The Frostpeak","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [88, 88],"drawn": false},{"_id": "MHEePGk3z5NYnkZ5","flags": {},"type": 0,"text": "The Thundershod","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [89, 89],"drawn": false},{"_id": "W3d6BtZ7iaI03ULw","flags": {},"type": 0,"text": "The Hammerkeepers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [90, 90],"drawn": false},{"_id": "pQNBgyFeyLEvAX8r","flags": {},"type": 0,"text": "The Winterhills","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [91, 91],"drawn": false},{"_id": "Gwo9tTebny9aRY0c","flags": {},"type": 0,"text": "The Quick-smelter clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [92, 92],"drawn": false},{"_id": "pF8JbHNCjpCo0Wdl","flags": {},"type": 0,"text": "The Goldenfield Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [93, 93],"drawn": false},{"_id": "iwp20r28Z86ZHVl0","flags": {},"type": 0,"text": "The Red-potters","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [94, 94],"drawn": false},{"_id": "9VYFvc9SDmNTEMsG","flags": {},"type": 0,"text": "The Highfields","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [95, 95],"drawn": false},{"_id": "VmB30lGhf7zCJ2CL","flags": {},"type": 0,"text": "The Honeywhiskey Clan","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [96, 96],"drawn": false},{"_id": "3dsD2W8b9lw4Po5v","flags": {},"type": 0,"text": "The Blackbones","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [97, 97],"drawn": false},{"_id": "dc7A0nVaMrSd2rwW","flags": {},"type": 0,"text": "The Longbeards","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [98, 98],"drawn": false},{"_id": "PhCtfEFqw1ICukIn","flags": {},"type": 0,"text": "The Silvertomes","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [99, 99],"drawn": false},{"_id": "vqf8FxqG8aInM9C8","flags": {},"type": 0,"text": "The Mountainfalls","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [100, 100],"drawn": false}],"formula": "1d101","replacement": true,"displayRoll": true,"_id": "yJlR9KtwrBrx3bz6"} 2 | -------------------------------------------------------------------------------- /independent_tables/100-things-you-might-wake-up-and-find-missing.json: -------------------------------------------------------------------------------- 1 | {"name": "Things You Might Wake Up And Find Missing","description": "One hundred things that your players find missing after waking up from sleep.Credit: http://dndspeak.com", "permission": {"default": 0},"flags": {},"results": [{"_id": "TnYkl2iTMHuxMOtX","flags": {},"type": 0,"text": "Hair","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [1, 1],"drawn": false},{"_id": "ps6aWUgg1DVobRov","flags": {},"type": 0,"text": "Eye(s)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [2, 2],"drawn": false},{"_id": "fSaglr7hNRzjIt5R","flags": {},"type": 0,"text": "Memories (all or some)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [3, 3],"drawn": false},{"_id": "YZay9nbYt43PhJzY","flags": {},"type": 0,"text": "Clothes","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [4, 4],"drawn": false},{"_id": "00gSte35ewxdXVJE","flags": {},"type": 0,"text": "Teeth","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [5, 5],"drawn": false},{"_id": "B2vFqEdrwTp7M2hX","flags": {},"type": 0,"text": "Shoes","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [6, 6],"drawn": false},{"_id": "rbZVbp9KsB4D0fGu","flags": {},"type": 0,"text": "Four limbs","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [7, 7],"drawn": false},{"_id": "xy1Djft061x3uar7","flags": {},"type": 0,"text": "Bed","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [8, 8],"drawn": false},{"_id": "7z3E2bfeLH2HMKaI","flags": {},"type": 0,"text": "Weapons","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [9, 9],"drawn": false},{"_id": "TaiBoJI0Nc7fNAPd","flags": {},"type": 0,"text": "Money","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [10, 10],"drawn": false},{"_id": "fG9MpiloWPDK2NNk","flags": {},"type": 0,"text": "Moral sense","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [11, 11],"drawn": false},{"_id": "TvcxZ5jcRcsjVr4G","flags": {},"type": 0,"text": "Tongue","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [12, 12],"drawn": false},{"_id": "M5CXacBYkJ1Ywz87","flags": {},"type": 0,"text": "House (bed is standing now in the open)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [13, 13],"drawn": false},{"_id": "POQ7phkFx71a7yHT","flags": {},"type": 0,"text": "Old scars and wounds","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [14, 14],"drawn": false},{"_id": "5CHH4ZOJwecMp7gi","flags": {},"type": 0,"text": "Color sight","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [15, 15],"drawn": false},{"_id": "azduyTJlyywtu9Qg","flags": {},"type": 0,"text": "Testicles","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [16, 16],"drawn": false},{"_id": "ib1xyf1CcwsEQZi7","flags": {},"type": 0,"text": "Emotions","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [17, 17],"drawn": false},{"_id": "Bn8uZh1taJEGafDq","flags": {},"type": 0,"text": "Equilibrium","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [18, 18],"drawn": false},{"_id": "ofzU8wJS55cYn7cQ","flags": {},"type": 0,"text": "Jewels","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [19, 19],"drawn": false},{"_id": "9l9BRz7ooeUCRSP7","flags": {},"type": 0,"text": "All the letters in your books (pages left blank)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [20, 20],"drawn": false},{"_id": "QMMkVb8n4c7LszTG","flags": {},"type": 0,"text": "Everyone else (you are apparently alone in the world)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [21, 21],"drawn": false},{"_id": "rrmPP3Rbe7GAvvhi","flags": {},"type": 0,"text": "Sense of humor","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [22, 22],"drawn": false},{"_id": "6RQ97fsAQd00Mzl4","flags": {},"type": 0,"text": "Appetite","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [23, 23],"drawn": false},{"_id": "rGy2tmsjy26Yo9MD","flags": {},"type": 0,"text": "Hat","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [24, 24],"drawn": false},{"_id": "PwrpLCDkyFFwi1AB","flags": {},"type": 0,"text": "Animals (pets, familiars, horses etc.)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [25, 25],"drawn": false},{"_id": "aWa7mvdgnFfrUrn3","flags": {},"type": 0,"text": "Youth (you are suddenly much older)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [26, 26],"drawn": false},{"_id": "2tL4po4WpXGKzgLa","flags": {},"type": 0,"text": "Health","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [27, 27],"drawn": false},{"_id": "mCYAqDwMgu8fru1O","flags": {},"type": 0,"text": "Beauty","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [28, 28],"drawn": false},{"_id": "80I57bfDNYUwhKRM","flags": {},"type": 0,"text": "All buttons, shoelaces and buckles","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [29, 29],"drawn": false},{"_id": "tPSjL930CeAHuEbm","flags": {},"type": 0,"text": "Color (becoming all pale white)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [30, 30],"drawn": false},{"_id": "8NB9JjSAwvNFgUtc","flags": {},"type": 0,"text": "Head","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [31, 31],"drawn": false},{"_id": "No1wsfW9vDPO9Uv3","flags": {},"type": 0,"text": "Sanity","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [32, 32],"drawn": false},{"_id": "h0aPtacmcvJM6oNj","flags": {},"type": 0,"text": "Knowledge of languages","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [33, 33],"drawn": false},{"_id": "CdQkM2wqMfDEhjkX","flags": {},"type": 0,"text": "Voice","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [34, 34],"drawn": false},{"_id": "u3zseNm1YmKn9pYW","flags": {},"type": 0,"text": "All fear","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [35, 35],"drawn": false},{"_id": "DOjcIKczFaN5wkLV","flags": {},"type": 0,"text": "Food","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [36, 36],"drawn": false},{"_id": "tQ2O1utsrqdyEpsb","flags": {},"type": 0,"text": "Blankets","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [37, 37],"drawn": false},{"_id": "yKCJF4M61tXluC2g","flags": {},"type": 0,"text": "Identity (no one remembers you)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [38, 38],"drawn": false},{"_id": "eASjXQ0W0SojwyaX","flags": {},"type": 0,"text": "Children","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [39, 39],"drawn": false},{"_id": "0QXMFf3R9kNfRkWZ","flags": {},"type": 0,"text": "Faith (if you’re a priest or paladin, you lose your levels)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [40, 40],"drawn": false},{"_id": "dq3Xh3nHOrIvOP3j","flags": {},"type": 0,"text": "Hope","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [41, 41],"drawn": false},{"_id": "f20OE2WVuHN6TihF","flags": {},"type": 0,"text": "Talents","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [42, 42],"drawn": false},{"_id": "bdvlZSbGZe8VYXvO","flags": {},"type": 0,"text": "Happiness","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [43, 43],"drawn": false},{"_id": "PKUizNXZlS4TxdU7","flags": {},"type": 0,"text": "Skin","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [44, 44],"drawn": false},{"_id": "7xq27xmJK5yGZHXC","flags": {},"type": 0,"text": "Life (you awake as an undead)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [45, 45],"drawn": false},{"_id": "T5ubNECc6hoAWBVw","flags": {},"type": 0,"text": "Body (you awake as an incorporeal spirit)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [46, 46],"drawn": false},{"_id": "AiSKy8O72Q7mNG1M","flags": {},"type": 0,"text": "Weight (you float in the air)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [47, 47],"drawn": false},{"_id": "Ysk1kSYBEbyMwJU2","flags": {},"type": 0,"text": "Courage","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [48, 48],"drawn": false},{"_id": "Kh6qvQdG1WvNeiOU","flags": {},"type": 0,"text": "Strength","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [49, 49],"drawn": false},{"_id": "NMKgheXpPLX0etOK","flags": {},"type": 0,"text": "Mobility (you’re paralyzed)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [50, 50],"drawn": false},{"_id": "jkSUurRMHemE11tb","flags": {},"type": 0,"text": "Face (it becomes blank)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [51, 51],"drawn": false},{"_id": "FWX976CLxUpRpJbl","flags": {},"type": 0,"text": "Kidneys","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [52, 52],"drawn": false},{"_id": "SHwvWPgnAGD1bDlA","flags": {},"type": 0,"text": "Fingernails","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [53, 53],"drawn": false},{"_id": "9Dn0sOepxnVCdvdi","flags": {},"type": 0,"text": "Senses (all or some)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [54, 54],"drawn": false},{"_id": "UBIEDbNtESkUC5Te","flags": {},"type": 0,"text": "Shadow","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [55, 55],"drawn": false},{"_id": "2IKYVRHOTInJsbJV","flags": {},"type": 0,"text": "Fat","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [56, 56],"drawn": false},{"_id": "mrKVGDmEY7zJpbx3","flags": {},"type": 0,"text": "Body liquids (you’re dehydrated)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [57, 57],"drawn": false},{"_id": "FM66MSO9aZuB7Fh3","flags": {},"type": 0,"text": "Lots of blood","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [58, 58],"drawn": false},{"_id": "6kQSc9G207xZ1VFn","flags": {},"type": 0,"text": "Desire","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [59, 59],"drawn": false},{"_id": "cHSXwHILsw13mCFM","flags": {},"type": 0,"text": "Curiosity ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [60, 60],"drawn": false},{"_id": "sonVgJb2XEZOLO1y","flags": {},"type": 0,"text": "Will to live","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [61, 61],"drawn": false},{"_id": "pTKQUQmvm4UumyrZ","flags": {},"type": 0,"text": "Age (you wake up younger, perhaps a child or a baby)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [62, 62],"drawn": false},{"_id": "DFVoLOL5L3r2cl2a","flags": {},"type": 0,"text": "Friends (nobody likes you)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [63, 63],"drawn": false},{"_id": "y5m42wftk8awoC5D","flags": {},"type": 0,"text": "Body heat","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [64, 64],"drawn": false},{"_id": "wU3Sccw5WLJf61Yh","flags": {},"type": 0,"text": "Navel","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [65, 65],"drawn": false},{"_id": "bvi3q2r4lOBDRogi","flags": {},"type": 0,"text": "Furniture","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [66, 66],"drawn": false},{"_id": "hPw10sBjzrjxTm1u","flags": {},"type": 0,"text": "Control (your body is controlled by something else)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [67, 67],"drawn": false},{"_id": "ZGbms6F9wVV6m6j0","flags": {},"type": 0,"text": "Empathy","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [68, 68],"drawn": false},{"_id": "LM72qu4gjfnqVC03","flags": {},"type": 0,"text": "Patience","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [69, 69],"drawn": false},{"_id": "B3KsShT5CyLhAiak","flags": {},"type": 0,"text": "Doubts","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [70, 70],"drawn": false},{"_id": "s8QNuXMh5rwM9uuk","flags": {},"type": 0,"text": "Soul (you’re an empty husk)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [71, 71],"drawn": false},{"_id": "3KmhTTIBOQcYrVAA","flags": {},"type": 0,"text": "Ears","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [72, 72],"drawn": false},{"_id": "yY327aW0gnTBXKqZ","flags": {},"type": 0,"text": "Keys","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [73, 73],"drawn": false},{"_id": "XV31doKpTwt2oS0R","flags": {},"type": 0,"text": "All sharp objects","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [74, 74],"drawn": false},{"_id": "e3Uw5loLnSKkUqF8","flags": {},"type": 0,"text": "All paintings and drawings","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [75, 75],"drawn": false},{"_id": "1mFhqkr3lv6jI77I","flags": {},"type": 0,"text": "All doors","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [76, 76],"drawn": false},{"_id": "Yc9EM9IsBbGWtdAP","flags": {},"type": 0,"text": "Humanity (you awake as another creature)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [77, 77],"drawn": false},{"_id": "wxK2mSdiq3xWvHP8","flags": {},"type": 0,"text": "Solidity (you awake as a shapeless, fluid mass)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [78, 78],"drawn": false},{"_id": "uwR5HWr7vmgm4Oo3","flags": {},"type": 0,"text": "Stability (your shape shifts constantly)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [79, 79],"drawn": false},{"_id": "egtYCUJXSdgxRuRm","flags": {},"type": 0,"text": "Sex (you awake as the other sex)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [80, 80],"drawn": false},{"_id": "HIZbfPdErjkz1UOT","flags": {},"type": 0,"text": "Time (you awake days, months or years after you fell asleep)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [81, 81],"drawn": false},{"_id": "oC0yxLv1wGaaH8Th","flags": {},"type": 0,"text": "Nose","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [82, 82],"drawn": false},{"_id": "mD2bbYm3S7febvDc","flags": {},"type": 0,"text": "Everything with a certain color","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [83, 83],"drawn": false},{"_id": "Bxdu0J2N14IoaqWD","flags": {},"type": 0,"text": "Sense of reality (you feel like in a dream)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [84, 84],"drawn": false},{"_id": "dNA3sudXB2K3A7GU","flags": {},"type": 0,"text": "Visibility (you wake up invisible)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [85, 85],"drawn": false},{"_id": "UqM9gb8aPy40EWjy","flags": {},"type": 0,"text": "Need to sleep","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [86, 86],"drawn": false},{"_id": "5NuTHqttqmnik45J","flags": {},"type": 0,"text": "Sensation","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [87, 87],"drawn": false},{"_id": "98SwD8LSysyxt2mv","flags": {},"type": 0,"text": "Size (you wake up much smaller)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [88, 88],"drawn": false},{"_id": "ZdCNPmbc5eAL3krU","flags": {},"type": 0,"text": "Intelligence","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [89, 89],"drawn": false},{"_id": "JaxMgr2M2BZ0u75O","flags": {},"type": 0,"text": "Speed","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [90, 90],"drawn": false},{"_id": "VIGN7T9I35Z8tY3Y","flags": {},"type": 0,"text": "Good manners (you become terribly rude)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [91, 91],"drawn": false},{"_id": "Py03m0gvMpImI45J","flags": {},"type": 0,"text": "Speech ability","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [92, 92],"drawn": false},{"_id": "GGIZIlUPa9Bx0xp8","flags": {},"type": 0,"text": "Bags","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [93, 93],"drawn": false},{"_id": "Cbn2PlT0BlX25JOu","flags": {},"type": 0,"text": "Vulnerability ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [94, 94],"drawn": false},{"_id": "pQc1q9MIw5ftwDbi","flags": {},"type": 0,"text": "Most valuable possession","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [95, 95],"drawn": false},{"_id": "T4KCLzGiYz0Y9JSt","flags": {},"type": 0,"text": "Eyelids","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [96, 96],"drawn": false},{"_id": "i1oSDaTBUEk0ZQFW","flags": {},"type": 0,"text": "Cutlery","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [97, 97],"drawn": false},{"_id": "ul2Ejc0XJhi5bLyB","flags": {},"type": 0,"text": "Chamber pot","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [98, 98],"drawn": false},{"_id": "sSiMZETZNPMz5Gfy","flags": {},"type": 0,"text": "Holy symbols and items","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [99, 99],"drawn": false},{"_id": "zfKRNgZj5DIo6bwV","flags": {},"type": 0,"text": "Left hand","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [100, 100],"drawn": false}],"formula": "1d101","replacement": true,"displayRoll": true,"_id": "gpyCdWWwWXzggvY9"} 2 | -------------------------------------------------------------------------------- /independent_tables/100-topics-for-a-campfire-story.json: -------------------------------------------------------------------------------- 1 | {"name": "Topics for a Campfire Story","description": "A list of RP topics that your characters could talk about when setting up camp for the night.Credit: http://dndspeak.com", "permission": {"default": 0},"flags": {},"results": [{"_id": "KzI9sHLt60mRXeuy","flags": {},"type": 0,"text": "Love","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [1, 1],"drawn": false},{"_id": "5Unc8MdaQH0yTkF7","flags": {},"type": 0,"text": "Battle (before the events of the campaign)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [2, 2],"drawn": false},{"_id": "8ECCsTLFTqZeLd0E","flags": {},"type": 0,"text": "Hardship","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [3, 3],"drawn": false},{"_id": "PMgoVah1U96A8Mdi","flags": {},"type": 0,"text": "A personal triumph","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [4, 4],"drawn": false},{"_id": "8jTpX7MwG9E9RXo7","flags": {},"type": 0,"text": "Friendship","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [5, 5],"drawn": false},{"_id": "frU1DXXok3mS6JWv","flags": {},"type": 0,"text": "Family","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [6, 6],"drawn": false},{"_id": "iBSNvlefe0Uca2uJ","flags": {},"type": 0,"text": "Faith or religion","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [7, 7],"drawn": false},{"_id": "G1QpBzrMk8s1IHgh","flags": {},"type": 0,"text": "Survival","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [8, 8],"drawn": false},{"_id": "I1I9LgSVUi7ulIVQ","flags": {},"type": 0,"text": "Good","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [9, 9],"drawn": false},{"_id": "x63WsD14GUaC1gfq","flags": {},"type": 0,"text": "Evil","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [10, 10],"drawn": false},{"_id": "5UkGhJcxs2Vc8Ve6","flags": {},"type": 0,"text": "Politics","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [11, 11],"drawn": false},{"_id": "714wYyBBneBcreuo","flags": {},"type": 0,"text": "A formative event in the your life","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [12, 12],"drawn": false},{"_id": "BIf81eQZXLX3sNQz","flags": {},"type": 0,"text": "Your personal philosophy","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [13, 13],"drawn": false},{"_id": "7DKRH479rcXL9PjZ","flags": {},"type": 0,"text": "Your culture","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [14, 14],"drawn": false},{"_id": "UPLve0FeGzbHgowy","flags": {},"type": 0,"text": "A culture you have experienced unlike your own","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [15, 15],"drawn": false},{"_id": "AqXzoDfp4K2msmZX","flags": {},"type": 0,"text": "One of your hobbies","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [16, 16],"drawn": false},{"_id": "mIJ1MFd152Q3w2VP","flags": {},"type": 0,"text": "Your passion","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [17, 17],"drawn": false},{"_id": "mPX29jJEz4qOdvRl","flags": {},"type": 0,"text": "Recent events (your opinion on it, how it affected you, etc.)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [18, 18],"drawn": false},{"_id": "Y7j2KEoBhnOgubwN","flags": {},"type": 0,"text": "Something funny","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [19, 19],"drawn": false},{"_id": "9Jm8u5cS2vNqj00a","flags": {},"type": 0,"text": "Your greatest rival","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [20, 20],"drawn": false},{"_id": "oHaq6Rz77Qx97htA","flags": {},"type": 0,"text": "Something you admire/dislike about another party member","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [21, 21],"drawn": false},{"_id": "Vpeep33zIu7uA3td","flags": {},"type": 0,"text": "Something you’ve stolen (or seen somebody steal)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [22, 22],"drawn": false},{"_id": "jyGvNL2FqCnoUtZO","flags": {},"type": 0,"text": "A controversial opinion","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [23, 23],"drawn": false},{"_id": "Llcc4SUfswV2FCRJ","flags": {},"type": 0,"text": "What you would change about the world","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [24, 24],"drawn": false},{"_id": "6MQJ8oQ2S3Efqurq","flags": {},"type": 0,"text": "Your education","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [25, 25],"drawn": false},{"_id": "MXoAyIvaHRHWHWvT","flags": {},"type": 0,"text": "Your childhood","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [26, 26],"drawn": false},{"_id": "8A2wv6DcfF4p9WTJ","flags": {},"type": 0,"text": "The scariest moment of your life","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [27, 27],"drawn": false},{"_id": "1kP4QThJBGdnICCj","flags": {},"type": 0,"text": "Science and technology","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [28, 28],"drawn": false},{"_id": "G3qyWlEiXAPORtv7","flags": {},"type": 0,"text": "A regret or mistake","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [29, 29],"drawn": false},{"_id": "iQ60qDEVYVJqjk7O","flags": {},"type": 0,"text": "A foolish childhood dream","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [30, 30],"drawn": false},{"_id": "3LOSZSKsP28FGArh","flags": {},"type": 0,"text": "Heartbreak","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [31, 31],"drawn": false},{"_id": "9Uo4siuC4pEKLes9","flags": {},"type": 0,"text": "A painful memory","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [32, 32],"drawn": false},{"_id": "t3p2r25olzq998KW","flags": {},"type": 0,"text": "Something you like about yourself","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [33, 33],"drawn": false},{"_id": "JfVrrU2S1EzQ8eIm","flags": {},"type": 0,"text": "Something you dislike about yourself","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [34, 34],"drawn": false},{"_id": "EEXbi8Q6lEOFy928","flags": {},"type": 0,"text": "Revenge","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [35, 35],"drawn": false},{"_id": "vfyo1Tq5RRCQ9z1Y","flags": {},"type": 0,"text": "A favorite tale of a hero of old","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [36, 36],"drawn": false},{"_id": "zSi1TGDfXNBcJQD8","flags": {},"type": 0,"text": "An encounter with nature","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [37, 37],"drawn": false},{"_id": "5B04rqX5rO66E9S2","flags": {},"type": 0,"text": "Your place in the world","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [38, 38],"drawn": false},{"_id": "v0KFZu6rJWa738A3","flags": {},"type": 0,"text": "Something you still can’t explain","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [39, 39],"drawn": false},{"_id": "6ZvLTcZqvwIqWS2k","flags": {},"type": 0,"text": "A night you barely remember","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [40, 40],"drawn": false},{"_id": "KZ31qHbyrQ47aMis","flags": {},"type": 0,"text": "An internal struggle","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [41, 41],"drawn": false},{"_id": "uxKDaouK202Sz951","flags": {},"type": 0,"text": "The best meal you’ve eaten","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [42, 42],"drawn": false},{"_id": "qsW4XRmoeeC95HSn","flags": {},"type": 0,"text": "The weirdest meal you’ve eaten","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [43, 43],"drawn": false},{"_id": "10tYQbgpBU0M5v6g","flags": {},"type": 0,"text": "Celebration","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [44, 44],"drawn": false},{"_id": "Xj5ggJo0yloHZqrd","flags": {},"type": 0,"text": "Music","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [45, 45],"drawn": false},{"_id": "kvyMEvX32KeOa6Ch","flags": {},"type": 0,"text": "Art","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [46, 46],"drawn": false},{"_id": "GnyNkOa7SQ49jR24","flags": {},"type": 0,"text": "An item you own","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [47, 47],"drawn": false},{"_id": "179WiiTFzN2yF3jc","flags": {},"type": 0,"text": "Deception","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [48, 48],"drawn": false},{"_id": "wZCXIZr4sVgjBZts","flags": {},"type": 0,"text": "Betrayal","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [49, 49],"drawn": false},{"_id": "bZRCWJdqX1UZQhaY","flags": {},"type": 0,"text": "Ingenuity","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [50, 50],"drawn": false},{"_id": "hfwhAKBDkGRc3lJJ","flags": {},"type": 0,"text": "Losing something important","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [51, 51],"drawn": false},{"_id": "afO7jkNXXkyZtaYt","flags": {},"type": 0,"text": "Doing the right thing","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [52, 52],"drawn": false},{"_id": "Nu5KLFsafR1GPY0Z","flags": {},"type": 0,"text": "Doing the wrong thing","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [53, 53],"drawn": false},{"_id": "W3GwvdhotbpP9qdV","flags": {},"type": 0,"text": "Being accused of something you didn’t do","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [54, 54],"drawn": false},{"_id": "W4GjL0V95YtnaFLA","flags": {},"type": 0,"text": "Seeing something you shouldn’t have","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [55, 55],"drawn": false},{"_id": "0ZEthOtYvz7T3SAh","flags": {},"type": 0,"text": "Money","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [56, 56],"drawn": false},{"_id": "CmKF5nNwQm48ZZIf","flags": {},"type": 0,"text": "An interaction with a stranger","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [57, 57],"drawn": false},{"_id": "HpE2rO30LGSVYQ3D","flags": {},"type": 0,"text": "A monster","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [58, 58],"drawn": false},{"_id": "K2w5k7rFqXRFtdwN","flags": {},"type": 0,"text": "The worst person you’ve ever known","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [59, 59],"drawn": false},{"_id": "mvFHYH8alks26L7d","flags": {},"type": 0,"text": "Someone you idolize","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [60, 60],"drawn": false},{"_id": "WiDohLUkTXqQPIl1","flags": {},"type": 0,"text": "A pet peeve","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [61, 61],"drawn": false},{"_id": "ar5ZCOPVSRAPnQo2","flags": {},"type": 0,"text": "A sexual encounter (or simply a romantic one, if the player is uncomfortable by this)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [62, 62],"drawn": false},{"_id": "EBfeRQErk01HU23L","flags": {},"type": 0,"text": "Drugs","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [63, 63],"drawn": false},{"_id": "ASPKi5cGpVL6Xq1v","flags": {},"type": 0,"text": "Anger","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [64, 64],"drawn": false},{"_id": "q7bVgUSp9wocA4DG","flags": {},"type": 0,"text": "Someone you miss","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [65, 65],"drawn": false},{"_id": "OsnKQ3IwzM1krnJz","flags": {},"type": 0,"text": "Something you will never do again","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [66, 66],"drawn": false},{"_id": "cjiMcTgw0LmPQuxF","flags": {},"type": 0,"text": "A hidden talent/skill","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [67, 67],"drawn": false},{"_id": "Wg5Xkw5ITn34quwa","flags": {},"type": 0,"text": "Beauty","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [68, 68],"drawn": false},{"_id": "HIYQTTHqHBMTn2Ob","flags": {},"type": 0,"text": "A good conversation you once had","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [69, 69],"drawn": false},{"_id": "kBj4iU1IW3IV5Owf","flags": {},"type": 0,"text": "Justice","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [70, 70],"drawn": false},{"_id": "jRmxfrZ7xRy0esqx","flags": {},"type": 0,"text": "Failure","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [71, 71],"drawn": false},{"_id": "PFJZdp8fMttVihzk","flags": {},"type": 0,"text": "Magic","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [72, 72],"drawn": false},{"_id": "QJ0wVPBLGCIJcadC","flags": {},"type": 0,"text": "Being in over your head","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [73, 73],"drawn": false},{"_id": "opnr52HKyLRhBdix","flags": {},"type": 0,"text": "Teamwork","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [74, 74],"drawn": false},{"_id": "DsVb6cBZTeCZhYIC","flags": {},"type": 0,"text": "Jealousy","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [75, 75],"drawn": false},{"_id": "SIZYfnC3ljXR6xuo","flags": {},"type": 0,"text": "Prejudice","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [76, 76],"drawn": false},{"_id": "IxtzYTWvrroV9RrD","flags": {},"type": 0,"text": "A realization you had about yourself","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [77, 77],"drawn": false},{"_id": "RjV8RaMnbmyzSRff","flags": {},"type": 0,"text": "Something you’ve realized since the start of this campaign","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [78, 78],"drawn": false},{"_id": "scb60BvJhVmwkXSs","flags": {},"type": 0,"text": "A long journey","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [79, 79],"drawn": false},{"_id": "0jFzm6eAhsuN6f9c","flags": {},"type": 0,"text": "Everything going wrong","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [80, 80],"drawn": false},{"_id": "NX2KurfSAYWId9nL","flags": {},"type": 0,"text": "The best day of your life","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [81, 81],"drawn": false},{"_id": "58XWmPsDAGrkCye1","flags": {},"type": 0,"text": "The worst day of your life","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [82, 82],"drawn": false},{"_id": "j5oKlsbDxhahdP90","flags": {},"type": 0,"text": "Trying too hard","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [83, 83],"drawn": false},{"_id": "1xXRQ5nbmYJ8i04w","flags": {},"type": 0,"text": "A pet you once had (or someone else’s)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [84, 84],"drawn": false},{"_id": "k3vxSjKh65fmq2jG","flags": {},"type": 0,"text": "An irrational fear","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [85, 85],"drawn": false},{"_id": "EvwEe1JdiyhR9wzp","flags": {},"type": 0,"text": "A lie you’ve told","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [86, 86],"drawn": false},{"_id": "m17SQgbnygfV3LVH","flags": {},"type": 0,"text": "Rebellion","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [87, 87],"drawn": false},{"_id": "BnFC5uQsdFr8DUfB","flags": {},"type": 0,"text": "Trust","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [88, 88],"drawn": false},{"_id": "X5YeY8pNq3TdZfgA","flags": {},"type": 0,"text": "What you miss most from back home","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [89, 89],"drawn": false},{"_id": "vFZ0rPMSixFGhD9c","flags": {},"type": 0,"text": "Fashion/clothing","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [90, 90],"drawn": false},{"_id": "dvfDcn7H9PBACcYO","flags": {},"type": 0,"text": "A game","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [91, 91],"drawn": false},{"_id": "1DfCcEaKzOfzMx2o","flags": {},"type": 0,"text": "Your hope for the future","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [92, 92],"drawn": false},{"_id": "OLoKAvJGSMsx0CVe","flags": {},"type": 0,"text": "If you could go back in time","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [93, 93],"drawn": false},{"_id": "c0Wg9NnsxtEIMTNq","flags": {},"type": 0,"text": "Your thoughts on children","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [94, 94],"drawn": false},{"_id": "iE0r1VLVF07wltUu","flags": {},"type": 0,"text": "Feeling powerful","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [95, 95],"drawn": false},{"_id": "0YWnAXJ7fbb2Jxls","flags": {},"type": 0,"text": "Feeling helpless","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [96, 96],"drawn": false},{"_id": "Ny5k4GGVSIsduZVf","flags": {},"type": 0,"text": "Abandonment","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [97, 97],"drawn": false},{"_id": "uX4beVjnKMWiGY15","flags": {},"type": 0,"text": "Finding something or someone you had lost","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [98, 98],"drawn": false},{"_id": "l37lC8ttNgatKeaU","flags": {},"type": 0,"text": "The greatest prank you ever pulled/witnessed","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [99, 99],"drawn": false},{"_id": "DxfnxOpWrlG54oTX","flags": {},"type": 0,"text": "Feeling like the universe (i.e. the DM) is out to get you","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [100, 100],"drawn": false}],"formula": "1d101","replacement": true,"displayRoll": true,"_id": "L3XPma2jhJlxaSkL"} 2 | -------------------------------------------------------------------------------- /independent_tables/100-titles.json: -------------------------------------------------------------------------------- 1 | {"name": "Titles","description": "One hundred titles for players and NPCs.Credit: http://dndspeak.com", "permission": {"default": 0},"flags": {},"results": [{"_id": "Limb9ijrhTGukI99","flags": {},"type": 0,"text": "___ of the Seven Potencies","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [1, 1],"drawn": false},{"_id": "6y6kevGBhBHCaRIv","flags": {},"type": 0,"text": "Grand Terakion ___ ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [2, 2],"drawn": false},{"_id": "OYFpsYe0zjEFpY8I","flags": {},"type": 0,"text": "___ Wizard of the Twelfth Realm of Ephysities ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [3, 3],"drawn": false},{"_id": "oJKPDbbG60sNnaeJ","flags": {},"type": 0,"text": "____, Master of Light and Shadow ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [4, 4],"drawn": false},{"_id": "Up4GKcLh1WmasVgu","flags": {},"type": 0,"text": "___, Manipulator of Magical Delights ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [5, 5],"drawn": false},{"_id": "odvmb0TjBcq18QEW","flags": {},"type": 0,"text": "___, Devourer of Chaos ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [6, 6],"drawn": false},{"_id": "kXXjoD8zQPgLKxuN","flags": {},"type": 0,"text": "___, Champion of the Great Halls of Terr’akkas ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [7, 7],"drawn": false},{"_id": "Xczp6do1hw2GzALu","flags": {},"type": 0,"text": "___, The White Crow ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [8, 8],"drawn": false},{"_id": "5jrl2hNl0BNYH7EV","flags": {},"type": 0,"text": "___, Bringer of ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [9, 9],"drawn": false},{"_id": "gOxI1n5K69xfEmZC","flags": {},"type": 0,"text": "___, The Prophesied ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [10, 10],"drawn": false},{"_id": "F0QOhdDUV1pWYW2B","flags": {},"type": 0,"text": "___, Benevolent Bringer of Chaos ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [11, 11],"drawn": false},{"_id": "8LHN6ONWdc8vq5rm","flags": {},"type": 0,"text": "___, The Party King ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [12, 12],"drawn": false},{"_id": "Mwh9cJxleWk9spnz","flags": {},"type": 0,"text": "___ of the Indivisible Chrome ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [13, 13],"drawn": false},{"_id": "OrUKjyC5YrbcF66L","flags": {},"type": 0,"text": "___, Master of the Mindless Fist ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [14, 14],"drawn": false},{"_id": "frkX2838t9Pe9wBu","flags": {},"type": 0,"text": "___, Weaver of Rainbow’s Thread ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [15, 15],"drawn": false},{"_id": "eNdSnC6D408iYzGc","flags": {},"type": 0,"text": "___, Sailor of the Twenty-One Trials ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [16, 16],"drawn": false},{"_id": "Q1IW0NsxLekNp2dX","flags": {},"type": 0,"text": "___, Unwritten in the Endless Tome of Time ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [17, 17],"drawn": false},{"_id": "NPm56OMswLWF8dIA","flags": {},"type": 0,"text": "___, Prince of the Harlequins ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [18, 18],"drawn": false},{"_id": "NVWNe5uBjMcNouX5","flags": {},"type": 0,"text": "___, the Fiend’s Personal Petitioner ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [19, 19],"drawn": false},{"_id": "5eNqMlnGtCNHKFrf","flags": {},"type": 0,"text": "___, Carver of Dragon Teeth ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [20, 20],"drawn": false},{"_id": "p7hGiQ7PA7d1g1uw","flags": {},"type": 0,"text": "___, Herald of the False Prophet ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [21, 21],"drawn": false},{"_id": "7oTvELOixPjdGA5s","flags": {},"type": 0,"text": "___, Lion Among Men ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [22, 22],"drawn": false},{"_id": "eVigONohYJrGVJGG","flags": {},"type": 0,"text": "___, The Thrice-Cursed ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [23, 23],"drawn": false},{"_id": "rGdVbyIQZ9G4uhOh","flags": {},"type": 0,"text": "___, Merrymaker Extraordinaire ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [24, 24],"drawn": false},{"_id": "Ebe6qZ0uzm7gwWNu","flags": {},"type": 0,"text": "___, Voice of the Desert ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [25, 25],"drawn": false},{"_id": "2iozzEymoKsQgeNo","flags": {},"type": 0,"text": "___, First of the Chosen ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [26, 26],"drawn": false},{"_id": "8tMI9SDrjeXrE751","flags": {},"type": 0,"text": "Deathslayer ___ ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [27, 27],"drawn": false},{"_id": "gOJu3dS3ugRL197a","flags": {},"type": 0,"text": "___ The Damned ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [28, 28],"drawn": false},{"_id": "78L1o5XQ0hXqrY9w","flags": {},"type": 0,"text": "___ of the Forbidden Sea ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [29, 29],"drawn": false},{"_id": "Lpl9mNUGdxw5BGM1","flags": {},"type": 0,"text": "___ of the Bells ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [30, 30],"drawn": false},{"_id": "selJKCHpBXV9y8M4","flags": {},"type": 0,"text": "___, Great Adjudicator ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [31, 31],"drawn": false},{"_id": "KKsttlH5wLh8wTSc","flags": {},"type": 0,"text": "___, King of the Seven Halls ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [32, 32],"drawn": false},{"_id": "F9XGLeVitiyTrvs3","flags": {},"type": 0,"text": "___, Margrave of Henzol-Dering ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [33, 33],"drawn": false},{"_id": "GIHSNYZoNNUt9Sgj","flags": {},"type": 0,"text": "___, Elector of Shauxi ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [34, 34],"drawn": false},{"_id": "Y6aVdAaV6uDkFaKC","flags": {},"type": 0,"text": "___, King in Ostmarck ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [35, 35],"drawn": false},{"_id": "Kui5AUnFj5DWggFg","flags": {},"type": 0,"text": "___ Dragonblood ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [36, 36],"drawn": false},{"_id": "cJKevSwMyFqGjG8r","flags": {},"type": 0,"text": "___ of Many Faces ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [37, 37],"drawn": false},{"_id": "7gP80nLKrlnXPPox","flags": {},"type": 0,"text": "___, The Noble Coward ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [38, 38],"drawn": false},{"_id": "gPWtti13R1TacMFg","flags": {},"type": 0,"text": "___ The Hussar ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [39, 39],"drawn": false},{"_id": "1zRzTy2Xu1ZVnmES","flags": {},"type": 0,"text": "___, Fellblade ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [40, 40],"drawn": false},{"_id": "nPhQKGAiP1HnKQAM","flags": {},"type": 0,"text": "___, The Fine-Fingered ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [41, 41],"drawn": false},{"_id": "wdoYP9udL9FmAk1q","flags": {},"type": 0,"text": "___, Feyborne ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [42, 42],"drawn": false},{"_id": "uB9kcTfAo20KuNIC","flags": {},"type": 0,"text": "First Voice ___ of the Crimson Choir ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [43, 43],"drawn": false},{"_id": "VuKET8VkV9QYZtMm","flags": {},"type": 0,"text": "___, Midnight’s Squire ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [44, 44],"drawn": false},{"_id": "eeRB1jBfo7p7sSqh","flags": {},"type": 0,"text": "___, Tyrant of the Frozen Grave ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [45, 45],"drawn": false},{"_id": "7P8lr4NHRjPcrhNI","flags": {},"type": 0,"text": "___, Mistress of the End ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [46, 46],"drawn": false},{"_id": "qJMQcNWAwFHnvkzR","flags": {},"type": 0,"text": "First Gate ___ of the Winding Road ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [47, 47],"drawn": false},{"_id": "sCzgVB2N2A3amIug","flags": {},"type": 0,"text": "___, The Hunger Immemorial ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [48, 48],"drawn": false},{"_id": "BcTwgGzJHl6gQqco","flags": {},"type": 0,"text": "___, Herald of Falling Stars ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [49, 49],"drawn": false},{"_id": "OyVA9wmuHoNqyI19","flags": {},"type": 0,"text": "___, The Beckoning Quiet ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [50, 50],"drawn": false},{"_id": "waGV6lnguDegJbU7","flags": {},"type": 0,"text": "___, The King of Fools ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [51, 51],"drawn": false},{"_id": "GStN7W55zngiTb0U","flags": {},"type": 0,"text": "___, The Living Thread of the Cosmic Weave ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [52, 52],"drawn": false},{"_id": "pyHvYd9tvTnxX32G","flags": {},"type": 0,"text": "___, of the Hallowed Skies ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [53, 53],"drawn": false},{"_id": "PmfORy3EnRJS5FSu","flags": {},"type": 0,"text": "Archbishop ___ of the Last Calling ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [54, 54],"drawn": false},{"_id": "TY9kz7o2XLq80K7h","flags": {},"type": 0,"text": "General ___ of the Pale Crusade ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [55, 55],"drawn": false},{"_id": "muhb3uRf4dC1NdsN","flags": {},"type": 0,"text": "___, The Wild Walker ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [56, 56],"drawn": false},{"_id": "GI4kz5r6lFBYmNDf","flags": {},"type": 0,"text": "___ The Unblemished ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [57, 57],"drawn": false},{"_id": "e2lWdjhQVUGAzK6P","flags": {},"type": 0,"text": "___ The Moon Seer ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [58, 58],"drawn": false},{"_id": "I5CDE3rD8LP4ydQ1","flags": {},"type": 0,"text": "___, The Answer ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [59, 59],"drawn": false},{"_id": "cYwOmxZR9plNaLa3","flags": {},"type": 0,"text": "___, The Night Stalker ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [60, 60],"drawn": false},{"_id": "2iLAkX9GBOcAzh7J","flags": {},"type": 0,"text": "___, The Great Bear ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [61, 61],"drawn": false},{"_id": "lrGgh5aKabtPgfuW","flags": {},"type": 0,"text": "___ The Unbroken ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [62, 62],"drawn": false},{"_id": "hLa4b6hRf2cj4DtH","flags": {},"type": 0,"text": "___, Honour’s Blade ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [63, 63],"drawn": false},{"_id": "Yuyg8W4UgEKoTuoy","flags": {},"type": 0,"text": "___, The Boulder ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [64, 64],"drawn": false},{"_id": "PnXEJR1rY0FpYN6N","flags": {},"type": 0,"text": "___, The Scarlet Lion ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [65, 65],"drawn": false},{"_id": "R9FuvsUINulB9zXV","flags": {},"type": 0,"text": "___, The Unyielding Anvil ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [66, 66],"drawn": false},{"_id": "xWctiSkz2Y2XoaM1","flags": {},"type": 0,"text": "___, The Iron Commander ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [67, 67],"drawn": false},{"_id": "OkKCwVElHhUkk1gY","flags": {},"type": 0,"text": "___, Fate Breaker ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [68, 68],"drawn": false},{"_id": "kWlFBRhatYyyHNod","flags": {},"type": 0,"text": "___ The Destined One ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [69, 69],"drawn": false},{"_id": "ck3uL5KZXQKIJ4Md","flags": {},"type": 0,"text": "Kingseeker ___ ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [70, 70],"drawn": false},{"_id": "Av9deXMj1f8QbJiV","flags": {},"type": 0,"text": "___ The Entitled ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [71, 71],"drawn": false},{"_id": "a0KSmMnki8XXmXxt","flags": {},"type": 0,"text": "Ocean Drinker ___ ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [72, 72],"drawn": false},{"_id": "Fx92Qw9taOkKXonH","flags": {},"type": 0,"text": "___, Lord of the Dance ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [73, 73],"drawn": false},{"_id": "YSR4wPK0pApebpGM","flags": {},"type": 0,"text": "___ of the Great Tower of Lysander ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [74, 74],"drawn": false},{"_id": "vGeNgLsIK0E3W0fC","flags": {},"type": 0,"text": "Earthbinder ___ ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [75, 75],"drawn": false},{"_id": "3DUf7Vb0AQNZYI2h","flags": {},"type": 0,"text": "___ of the Poisoned Mind ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [76, 76],"drawn": false},{"_id": "FkZjKeo5VeOIidxA","flags": {},"type": 0,"text": "___, Terror of the Deeps ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [77, 77],"drawn": false},{"_id": "ZvivtQyBZoZhXgzz","flags": {},"type": 0,"text": "___, Bearer of the Unseeing Eye ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [78, 78],"drawn": false},{"_id": "VcrUvLofAJmdLRZ3","flags": {},"type": 0,"text": "___, Walker of the Unseen Path ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [79, 79],"drawn": false},{"_id": "nlOL3UUwaORqt083","flags": {},"type": 0,"text": "Grand Abritrix ___ ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [80, 80],"drawn": false},{"_id": "wI9YcjNbgxSMDDpO","flags": {},"type": 0,"text": "___, The Forever Burdened One ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [81, 81],"drawn": false},{"_id": "zSXYHb9efsMOMV3X","flags": {},"type": 0,"text": "___, Eternal Servant of the Weave ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [82, 82],"drawn": false},{"_id": "EYdo5x8tAqsk31Rh","flags": {},"type": 0,"text": "___ of the Boundless Possibilites ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [83, 83],"drawn": false},{"_id": "OeElFzitQYkYcwQ7","flags": {},"type": 0,"text": "___, The Eternal Emperor/Empress ","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [84, 84],"drawn": false},{"_id": "gECFsD43YHSJax5v","flags": {},"type": 0,"text": "___, First to Desire","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [85, 85],"drawn": false},{"_id": "1RjnrGzqwcgW6coB","flags": {},"type": 0,"text": "___, Valiant Protector","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [86, 86],"drawn": false},{"_id": "1SEh3p8RunuNl1ud","flags": {},"type": 0,"text": "___, Born of Ash","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [87, 87],"drawn": false},{"_id": "A01spicIYRyxVqdY","flags": {},"type": 0,"text": "___, Who Smiles at Death","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [88, 88],"drawn": false},{"_id": "ugTo8iI8bkt2reOp","flags": {},"type": 0,"text": "___, The Ruin Sage","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [89, 89],"drawn": false},{"_id": "UmGhQTUSXxcoJDuz","flags": {},"type": 0,"text": "___, Embraced by the Moon","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [90, 90],"drawn": false},{"_id": "tb5fohupeIpTwxNt","flags": {},"type": 0,"text": "___ The Unyielding","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [91, 91],"drawn": false},{"_id": "1WYj1SLsj02Fqr0n","flags": {},"type": 0,"text": "___, Treachery Incarnate","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [92, 92],"drawn": false},{"_id": "LLxOJLoO2n1LhBCA","flags": {},"type": 0,"text": "___, Protector of Hope","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [93, 93],"drawn": false},{"_id": "Ms1YFBr1cTkHbljD","flags": {},"type": 0,"text": "___, The Fading Light","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [94, 94],"drawn": false},{"_id": "XDcVm1fG8Xr3hB9c","flags": {},"type": 0,"text": "___, The Promised End","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [95, 95],"drawn": false},{"_id": "5a3aVKuUaFl4xhJa","flags": {},"type": 0,"text": "___, Reality Sculptor","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [96, 96],"drawn": false},{"_id": "SUFIiqFo3XVPuLgt","flags": {},"type": 0,"text": "___, Tyrant of the Cliffs","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [97, 97],"drawn": false},{"_id": "ZbBxBAw7yREfVXBf","flags": {},"type": 0,"text": "___, Keeper of Silence","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [98, 98],"drawn": false},{"_id": "HBDn46afMpIYg95q","flags": {},"type": 0,"text": "___, The Black Rose","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [99, 99],"drawn": false},{"_id": "0fRpta3mjSxuiope","flags": {},"type": 0,"text": "___, Apostle of Dusk","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [100, 100],"drawn": false}],"formula": "1d101","replacement": true,"displayRoll": true,"_id": "oI9cSEYsdvBKs11T"} 2 | -------------------------------------------------------------------------------- /independent_tables/100-tavern-names.json: -------------------------------------------------------------------------------- 1 | {"name": "Tavern Names","description": "Credit: http://dndspeak.com", "permission": {"default": 0},"flags": {},"results": [{"_id": "h4KgwYf9ZnRw21z4","flags": {},"type": 0,"text": "The Piss and Whistle","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [1, 1],"drawn": false},{"_id": "80Yh6UoTMGVZaFLz","flags": {},"type": 0,"text": "The bar is called the Setting Sun and the inn next door is called The Rising Sun","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [2, 2],"drawn": false},{"_id": "cjjHNUQ0WS4tM8uq","flags": {},"type": 0,"text": "The Fishy Smell – bar down by the docks. There’s a mermaid on the sign (giggity).","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [3, 3],"drawn": false},{"_id": "1j2InHznSk9sciIo","flags": {},"type": 0,"text": "The Red Lion","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [4, 4],"drawn": false},{"_id": "bejlm7N2DlvvvZxf","flags": {},"type": 0,"text": "The Redder Lion (these two bars, own by bitter siblings, pretend to hate each other to increase business)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [5, 5],"drawn": false},{"_id": "X4ch1yV1Guy8tcWs","flags": {},"type": 0,"text": "The Hobbit Hole – the entrance is human sized but it shaped like the door to Bilbo Baggin’s house","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [6, 6],"drawn": false},{"_id": "OYpdSJJQR5eSbFPq","flags": {},"type": 0,"text": "The Slouching Troll","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [7, 7],"drawn": false},{"_id": "J2cQtoUImC0Iyrrc","flags": {},"type": 0,"text": "Ms. Mary’s Mistake – owned and operated by Ms. Mary’s son….yep.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [8, 8],"drawn": false},{"_id": "Qv6TvXGnTp1n9FMY","flags": {},"type": 0,"text": "Fortune’s Wheel – drink of the night: spin the wheel and find out","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [9, 9],"drawn": false},{"_id": "NeWYFW9BNZiNrONo","flags": {},"type": 0,"text": "The Black Gate","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [10, 10],"drawn": false},{"_id": "M1e34HaVMwPrfYIX","flags": {},"type": 0,"text": "The Shadow of the Castle – is in the shadow of the castle in town.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [11, 11],"drawn": false},{"_id": "2FrgXZbqCJttIgdb","flags": {},"type": 0,"text": "The Giddy Griffin Inn and Tavern","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [12, 12],"drawn": false},{"_id": "olhxwtRH66d51O5L","flags": {},"type": 0,"text": "Brazen Beholder Brews and Benches","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [13, 13],"drawn": false},{"_id": "R5OK2aXkahBrmtlk","flags": {},"type": 0,"text": "The Setting Sun","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [14, 14],"drawn": false},{"_id": "kT2cZ4rkDC8mG2W1","flags": {},"type": 0,"text": "The Bawdy Winch Brew Hall","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [15, 15],"drawn": false},{"_id": "k6zbwlPKJ48ZjBQp","flags": {},"type": 0,"text": "The Rusty Blade","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [16, 16],"drawn": false},{"_id": "r5dLNg9WHtdhfHXI","flags": {},"type": 0,"text": "The Hobbled Hobgoblin’s Hearth","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [17, 17],"drawn": false},{"_id": "lXq0jSco8ym5HnM7","flags": {},"type": 0,"text": "Lich Lord Libations","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [18, 18],"drawn": false},{"_id": "4mJDMCbvkm6B0IGr","flags": {},"type": 0,"text": "The Wrinkled Shrimp","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [19, 19],"drawn": false},{"_id": "ryTCxEKg370doLvP","flags": {},"type": 0,"text": "The Grim Goblin","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [20, 20],"drawn": false},{"_id": "XwA6NYrtXRVoE93K","flags": {},"type": 0,"text": "The Silent Mistress","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [21, 21],"drawn": false},{"_id": "fjE06G2UkiStXc3r","flags": {},"type": 0,"text": "The Rusty Nail","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [22, 22],"drawn": false},{"_id": "xn5K93RIGxIfsvHC","flags": {},"type": 0,"text": "The Winking Gnome","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [23, 23],"drawn": false},{"_id": "pEsSyy9xs9Q3wRGR","flags": {},"type": 0,"text": "The Broken Plow","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [24, 24],"drawn": false},{"_id": "oWn1qsqd67DxYDZC","flags": {},"type": 0,"text": "The Last Drop","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [25, 25],"drawn": false},{"_id": "UHRso0saOp3nPDPj","flags": {},"type": 0,"text": "The Orcs Head","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [26, 26],"drawn": false},{"_id": "OhblYjHCHlWonLmQ","flags": {},"type": 0,"text": "The Happy Horse","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [27, 27],"drawn": false},{"_id": "1jokmID0zKXbyD45","flags": {},"type": 0,"text": "The Sunken Fairy","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [28, 28],"drawn": false},{"_id": "cKTtXG4dBtSMucSn","flags": {},"type": 0,"text": "The Step Right Inn","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [29, 29],"drawn": false},{"_id": "LJbOrCe0TFYWohJs","flags": {},"type": 0,"text": "The White Elephant","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [30, 30],"drawn": false},{"_id": "9W43Q9SLk3VGqJ9J","flags": {},"type": 0,"text": "The Road’s End","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [31, 31],"drawn": false},{"_id": "AzwXgR5jCrAIHn3M","flags": {},"type": 0,"text": "The Keystone Roadhouse","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [32, 32],"drawn": false},{"_id": "GgfeFOwRaH6Kjwfj","flags": {},"type": 0,"text": "The Old Spoke Inn","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [33, 33],"drawn": false},{"_id": "w4WpGvLN8JTQzC4K","flags": {},"type": 0,"text": "The Wagon Rut Tavern","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [34, 34],"drawn": false},{"_id": "sOIaOYj9JTbDu7jP","flags": {},"type": 0,"text": "The Anchor Point Pub","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [35, 35],"drawn": false},{"_id": "VbQIAGMXgEb94fOS","flags": {},"type": 0,"text": "The Ginger Brew Pub","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [36, 36],"drawn": false},{"_id": "hC1iY64LTerOOSm8","flags": {},"type": 0,"text": "The Quiet Eaves Lodge","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [37, 37],"drawn": false},{"_id": "8zEsktUX3zitYg3q","flags": {},"type": 0,"text": "The Copper Sword Tavern","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [38, 38],"drawn": false},{"_id": "aYzJ1LBLGZdq071X","flags": {},"type": 0,"text": "The Axe And Bramble","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [39, 39],"drawn": false},{"_id": "tIr6VS8MQeOMfhMY","flags": {},"type": 0,"text": "The Mustard Seed Tavern","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [40, 40],"drawn": false},{"_id": "Q3KBAI94Jl6fwymQ","flags": {},"type": 0,"text": "The Bee And Bugle","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [41, 41],"drawn": false},{"_id": "MheQvWrtnaC0G2dx","flags": {},"type": 0,"text": "The Cedar Hearth Lodge","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [42, 42],"drawn": false},{"_id": "TyZeKQFMcPQri6uQ","flags": {},"type": 0,"text": "The Scale And Ale","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [43, 43],"drawn": false},{"_id": "hH5WCN5Xblqxow4c","flags": {},"type": 0,"text": "The Bog And Bard","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [44, 44],"drawn": false},{"_id": "VF69O8KccP8hXmAZ","flags": {},"type": 0,"text": "The Trodden Fork","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [45, 45],"drawn": false},{"_id": "iPTo2j69IzZocphH","flags": {},"type": 0,"text": "The Headless Dragon","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [46, 46],"drawn": false},{"_id": "QaxlgSsjoscfu0RB","flags": {},"type": 0,"text": "The Tenth Hell","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [47, 47],"drawn": false},{"_id": "YnZqmPVJ5e8lqdT0","flags": {},"type": 0,"text": "The Burning Blight","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [48, 48],"drawn": false},{"_id": "lsxSEyDl5y0JNMwI","flags": {},"type": 0,"text": "The Blind Beholder","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [49, 49],"drawn": false},{"_id": "evNIFvzscAGZAH50","flags": {},"type": 0,"text": "The Squawking Cockatrice","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [50, 50],"drawn": false},{"_id": "UnAOpGtdoIUHropa","flags": {},"type": 0,"text": "The Bronze Hook","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [51, 51],"drawn": false},{"_id": "Uw0we23RQgcRX8ZH","flags": {},"type": 0,"text": "The Toothy grin","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [52, 52],"drawn": false},{"_id": "Ew1gCOMGtMjlNxLj","flags": {},"type": 0,"text": "The Don’t Go Inn","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [53, 53],"drawn": false},{"_id": "YUhy3lMM1ZYwB95v","flags": {},"type": 0,"text": "The Abbot and the Duchess","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [54, 54],"drawn": false},{"_id": "x7G4HWEDSNQJ99uG","flags": {},"type": 0,"text": "Slum Pickens","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [55, 55],"drawn": false},{"_id": "8TAUwvbSfkcBMvrp","flags": {},"type": 0,"text": "Westgate Beds and Brewery","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [56, 56],"drawn": false},{"_id": "YaMmraBadd3D2Cga","flags": {},"type": 0,"text": "The Hungry Bear Lodge. Run by a werebear.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [57, 57],"drawn": false},{"_id": "jQDX20vp3Hzp0FR1","flags": {},"type": 0,"text": "The Gobbler","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [58, 58],"drawn": false},{"_id": "01lRYcqII55UpWOe","flags": {},"type": 0,"text": "Ye Ol’ Tavern","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [59, 59],"drawn": false},{"_id": "ie6fyauhm21y3R2p","flags": {},"type": 0,"text": "The Mighty Bite","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [60, 60],"drawn": false},{"_id": "39vfFHvwLpbbxFNj","flags": {},"type": 0,"text": "The Banshee’s Whale (sign has a chibiesque banshee riding a smiley whale)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [61, 61],"drawn": false},{"_id": "SHzlp1cBg9kF2Ntz","flags": {},"type": 0,"text": "The Styx","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [62, 62],"drawn": false},{"_id": "dHO1LuVIGmbPXtXt","flags": {},"type": 0,"text": "Forget Your Troubles","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [63, 63],"drawn": false},{"_id": "OQncYIPtMIoOCENc","flags": {},"type": 0,"text": "Hag’s End","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [64, 64],"drawn": false},{"_id": "mJimlXJLWuGMQdWi","flags": {},"type": 0,"text": "The Emerald Wyrm","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [65, 65],"drawn": false},{"_id": "VOsIZ2GzkVcSh9lM","flags": {},"type": 0,"text": "The Seven Drunken Knights (adorn the insides with suits of armor, or even special drinks every day of the week)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [66, 66],"drawn": false},{"_id": "uImTcuqyv7O5iXPs","flags": {},"type": 0,"text": "The Frisky Fairy","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [67, 67],"drawn": false},{"_id": "I9ZOp3aXO6430Cej","flags": {},"type": 0,"text": "The Staggering Paladin","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [68, 68],"drawn": false},{"_id": "Te4Y3FkVY2P0iA1e","flags": {},"type": 0,"text": "The Gutted Fish (a dockside alehouse, obviously. It smells bad and sailors fight a lot, so expect splittered wood tables)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [69, 69],"drawn": false},{"_id": "GQoKlkPv6b1y8DDj","flags": {},"type": 0,"text": "The Peckish Pixie","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [70, 70],"drawn": false},{"_id": "kTeGEfXJOd07BqVM","flags": {},"type": 0,"text": "The Broken Drum (can’t be beat)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [71, 71],"drawn": false},{"_id": "B7kcC5dIQj4Rr1FC","flags": {},"type": 0,"text": "Pints and Potatoes","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [72, 72],"drawn": false},{"_id": "SM4Jemtn8KQ61ArQ","flags": {},"type": 0,"text": "The Thirsty Troll (with 2 for 1 Thirsty Thursdays)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [73, 73],"drawn": false},{"_id": "jw4uaagbRJ6zmvVt","flags": {},"type": 0,"text": "The Mule and The Mare","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [74, 74],"drawn": false},{"_id": "3xbhrcnf4VaACPsC","flags": {},"type": 0,"text": "The Chieftain and The Prince","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [75, 75],"drawn": false},{"_id": "B61FXjxm3bh9kdO6","flags": {},"type": 0,"text": "The Serpent and The Virgin","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [76, 76],"drawn": false},{"_id": "suVYM8C2lQZUYRLh","flags": {},"type": 0,"text": "Hag’s Head Inn","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [77, 77],"drawn": false},{"_id": "1OIIB7YfGmdjJ5hL","flags": {},"type": 0,"text": "The Molly Waggler","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [78, 78],"drawn": false},{"_id": "JsLfRoNrfhwQweR8","flags": {},"type": 0,"text": "The Olive Branch","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [79, 79],"drawn": false},{"_id": "5bDtBvIe1hz4qi9G","flags": {},"type": 0,"text": "The Artful Lodger","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [80, 80],"drawn": false},{"_id": "wtMIuhSKPTJ1i2qe","flags": {},"type": 0,"text": "Coppershiner’s","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [81, 81],"drawn": false},{"_id": "6KRXv4bsd0J2b614","flags": {},"type": 0,"text": "Gravida’s Glow","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [82, 82],"drawn": false},{"_id": "w8L7J0pTSNQz6cVD","flags": {},"type": 0,"text": "The High Mandolin","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [83, 83],"drawn": false},{"_id": "yhdgw62HORRvQc4G","flags": {},"type": 0,"text": "The Rare Lady","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [84, 84],"drawn": false},{"_id": "nZpHOLugIzfTA562","flags": {},"type": 0,"text": "The Amber Casks","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [85, 85],"drawn": false},{"_id": "Mavk2rBdJwKUX6uC","flags": {},"type": 0,"text": "The Steamy Farmer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [86, 86],"drawn": false},{"_id": "LHCzd36vvkSnwmu8","flags": {},"type": 0,"text": "The Drunk Duck","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [87, 87],"drawn": false},{"_id": "xyYkr9vs1T0eREfj","flags": {},"type": 0,"text": "The Camel’s Hump","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [88, 88],"drawn": false},{"_id": "sFIKoTsHcaGKiC0V","flags": {},"type": 0,"text": "The Seaman’s Reign","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [89, 89],"drawn": false},{"_id": "KBMMPI9l8qETf8dI","flags": {},"type": 0,"text": "The Fermented Badger","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [90, 90],"drawn": false},{"_id": "RgduCGSYhR3JpOw2","flags": {},"type": 0,"text": "The Salty Scuffer","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [91, 91],"drawn": false},{"_id": "3LMKs3iUgFduAc2G","flags": {},"type": 0,"text": "New Beginnings – A tavern run by a group of retired adventurers who decided to start a new life.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [92, 92],"drawn": false},{"_id": "qiwplgmtREaGBtJA","flags": {},"type": 0,"text": "The Good Knight’s Rest","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [93, 93],"drawn": false},{"_id": "1biHjqqaLBe3ydme","flags": {},"type": 0,"text": "The Laughing Ogre","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [94, 94],"drawn": false},{"_id": "5aeU9HnEdfbvkZ6q","flags": {},"type": 0,"text": "Sleepless Scholar’s Inn","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [95, 95],"drawn": false},{"_id": "rcMtxKnoSb33fQBp","flags": {},"type": 0,"text": "Blackeyed Pete’s R&R","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [96, 96],"drawn": false},{"_id": "u85WV7GfK7lbnjcC","flags": {},"type": 0,"text": "The Lost Road Inn","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [97, 97],"drawn": false},{"_id": "oudPrBcgFZvC6oRG","flags": {},"type": 0,"text": "The Bronze Buckle","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [98, 98],"drawn": false},{"_id": "BrRGEKSXGmGIJI66","flags": {},"type": 0,"text": "The Salty Seadog","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [99, 99],"drawn": false},{"_id": "OuRzZQyVKPzBZnXF","flags": {},"type": 0,"text": "The Gnashing Gnoll","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [100, 100],"drawn": false}],"formula": "1d101","replacement": true,"displayRoll": true,"_id": "xumXG2pGV0rMOBjk"} 2 | -------------------------------------------------------------------------------- /independent_tables/100-fears-and-phobias.json: -------------------------------------------------------------------------------- 1 | {"name": "Fears and Phobias","description": "One hundred fears and phobias that your players may get during their travels!Credit: http://dndspeak.com", "permission": {"default": 0},"flags": {},"results": [{"_id": "pA6MUr8v1nJiplFA","flags": {},"type": 0,"text": "Panphobia – everything","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [1, 1],"drawn": false},{"_id": "VMSzwCcQVvt8wVJh","flags": {},"type": 0,"text": "Acrophobia – heights","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [2, 2],"drawn": false},{"_id": "8IBpdxh8sS8P3H78","flags": {},"type": 0,"text": "Neophobia – new things/change","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [3, 3],"drawn": false},{"_id": "x06TuBcNhWRZHgbe","flags": {},"type": 0,"text": "Arachnophobia – spiders","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [4, 4],"drawn": false},{"_id": "GVUicEv6bHy52weU","flags": {},"type": 0,"text": "Autophobia – being alone/undesirable","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [5, 5],"drawn": false},{"_id": "4rsIkeIluvC9oSkz","flags": {},"type": 0,"text": "Thantophobia – dying","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [6, 6],"drawn": false},{"_id": "irm3p4Yn72CGFZFg","flags": {},"type": 0,"text": "Omphalophobia – belly buttons","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [7, 7],"drawn": false},{"_id": "WyepB0YPIVMrElMQ","flags": {},"type": 0,"text": "Ophidiophobia – snakes","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [8, 8],"drawn": false},{"_id": "EhVvtPmdCC7ZeOOp","flags": {},"type": 0,"text": "Pyrophobia – fire","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [9, 9],"drawn": false},{"_id": "faGReaugGVRr4iic","flags": {},"type": 0,"text": "Mysophobia – germs/dirt","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [10, 10],"drawn": false},{"_id": "jv2NeRsZsNR1CaZ6","flags": {},"type": 0,"text": "Entomophobia – insects","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [11, 11],"drawn": false},{"_id": "Km242UcF7wJKquEd","flags": {},"type": 0,"text": "Xenophobia – strangers/foreigners","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [12, 12],"drawn": false},{"_id": "W4NO65coZykLHy3z","flags": {},"type": 0,"text": "Triskaidekaphobia – the number 13","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [13, 13],"drawn": false},{"_id": "bMEuwjNKj3P3XJnT","flags": {},"type": 0,"text": "Agoraphobia – open/public spaces","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [14, 14],"drawn": false},{"_id": "81U74PRPTEKQVKo8","flags": {},"type": 0,"text": "Scopophobia – being looked at","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [15, 15],"drawn": false},{"_id": "j6X1dvxlmCvJyDVS","flags": {},"type": 0,"text": "Somniphobia – sleep","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [16, 16],"drawn": false},{"_id": "Bqsc9r9miEllR2LA","flags": {},"type": 0,"text": "Nyctophobia – dark/darkness","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [17, 17],"drawn": false},{"_id": "qOGxwyCADKQBeIJI","flags": {},"type": 0,"text": "Gymnophobia – nudity","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [18, 18],"drawn": false},{"_id": "Z6r1jkY1KvqUUnLr","flags": {},"type": 0,"text": "Zoophobia – animals","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [19, 19],"drawn": false},{"_id": "v4cs8mssDyqvE43r","flags": {},"type": 0,"text": "Ligyrophobia – loud noises","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [20, 20],"drawn": false},{"_id": "pr5HAp4kxQ6IjI5W","flags": {},"type": 0,"text": "Hemophobia – blood","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [21, 21],"drawn": false},{"_id": "Dj6K04NwO21zruCD","flags": {},"type": 0,"text": "Claustrophobia – enclosed/confined spaces","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [22, 22],"drawn": false},{"_id": "5TE5JEDoNJx71nel","flags": {},"type": 0,"text": "Gynophobia – women","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [23, 23],"drawn": false},{"_id": "Cbwk4orc8waqIorj","flags": {},"type": 0,"text": "Xanthophobia – the color yellow","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [24, 24],"drawn": false},{"_id": "45MGReH8448vPeli","flags": {},"type": 0,"text": "pedophobia – children/babies","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [25, 25],"drawn": false},{"_id": "XuIiis6YwovCww98","flags": {},"type": 0,"text": "Gerontophobia – growing old/aging","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [26, 26],"drawn": false},{"_id": "jUTxHOtT1vzI7PPg","flags": {},"type": 0,"text": "Chirophobia – hands","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [27, 27],"drawn": false},{"_id": "ancr57uNMZhqlpPu","flags": {},"type": 0,"text": "Chiroptophobia – bats","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [28, 28],"drawn": false},{"_id": "x54dVyuF9cRtDYrE","flags": {},"type": 0,"text": "Herpetophobia – creepy, crawly things","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [29, 29],"drawn": false},{"_id": "UvH7vZH7tXEfRcdu","flags": {},"type": 0,"text": "Hylophobia – trees, forests, woods","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [30, 30],"drawn": false},{"_id": "AE2NIUjN4ZM7priz","flags": {},"type": 0,"text": "Dysmorphophobia – phobic obsession with a real or imaginary body defect","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [31, 31],"drawn": false},{"_id": "4gkP8hKmuS7njFLc","flags": {},"type": 0,"text": "Gelotophobia – being laughed at","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [32, 32],"drawn": false},{"_id": "sEf4BwmCA2L2mtiX","flags": {},"type": 0,"text": "Bogyphobia – boogeyman","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [33, 33],"drawn": false},{"_id": "VseNLFKEBnrtgIbh","flags": {},"type": 0,"text": "Algophobia – pain","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [34, 34],"drawn": false},{"_id": "gHufaIr9YNEXOJ31","flags": {},"type": 0,"text": "Aichmophobia – knives/pointed objects/sharp things","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [35, 35],"drawn": false},{"_id": "m6gqWxgmZHASko6L","flags": {},"type": 0,"text": "Haptephobia – being touched","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [36, 36],"drawn": false},{"_id": "JaWZ7vDMRB4Vcs5h","flags": {},"type": 0,"text": "Pediophobia – dolls","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [37, 37],"drawn": false},{"_id": "HL7nrJiuHAO9jwEB","flags": {},"type": 0,"text": "Wiccaphobia – witches/witchcraft","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [38, 38],"drawn": false},{"_id": "0Q89eP6zP9N4reqd","flags": {},"type": 0,"text": "Astraphobia – thunder/lightning","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [39, 39],"drawn": false},{"_id": "GMq3kWYR0srPTbln","flags": {},"type": 0,"text": "Sociophobia – social situations","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [40, 40],"drawn": false},{"_id": "TF2GXSCaplhLamhT","flags": {},"type": 0,"text": "Atychiphobia – failure","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [41, 41],"drawn": false},{"_id": "LJ5AB3j3QClr4YNn","flags": {},"type": 0,"text": "Phobophobia – fear/phobias","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [42, 42],"drawn": false},{"_id": "dWZIooJLICvctwly","flags": {},"type": 0,"text": "Androphobia – men","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [43, 43],"drawn": false},{"_id": "OBJzoN6zeQFPcutg","flags": {},"type": 0,"text": "Oikophobia – household appliances/objects","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [44, 44],"drawn": false},{"_id": "FROln94F06BFcahm","flags": {},"type": 0,"text": "Trypophobia – holes","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [45, 45],"drawn": false},{"_id": "IFfytkLstqNMQjlb","flags": {},"type": 0,"text": "Anthrophobia – people (being in company of)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [46, 46],"drawn": false},{"_id": "md2JnowU0AmVC1zL","flags": {},"type": 0,"text": "Emetophobia – vomit/vomiting oneself/others vomiting","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [47, 47],"drawn": false},{"_id": "O9D78FVB2dkEKz24","flags": {},"type": 0,"text": "Glossophobia – speaking publicly","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [48, 48],"drawn": false},{"_id": "iJ3xtKPcFsB9cnhM","flags": {},"type": 0,"text": "Amychophobia – being scratched","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [49, 49],"drawn": false},{"_id": "31VT4ouqdcEwLU7U","flags": {},"type": 0,"text": "Ombrophobia – rain","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [50, 50],"drawn": false},{"_id": "ZPyRHFHADe6Rt3C7","flags": {},"type": 0,"text": "Decidophobia – making decisions","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [51, 51],"drawn": false},{"_id": "bnOXONMEG7vivMj6","flags": {},"type": 0,"text": "Dishabiliophobia – undressing in front of someone","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [52, 52],"drawn": false},{"_id": "CHtMdLiomKVS6WxZ","flags": {},"type": 0,"text": "Scoleciphobia – worms","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [53, 53],"drawn": false},{"_id": "ZLhbzErwEUermnSK","flags": {},"type": 0,"text": "Spectrophobia – ghosts/phantoms","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [54, 54],"drawn": false},{"_id": "dvOw567wJRVm6Ce7","flags": {},"type": 0,"text": "Murophobia – rats/mice","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [55, 55],"drawn": false},{"_id": "zdjB9B2PgZ67igT3","flags": {},"type": 0,"text": "Coulrophobia – clowns/jesters","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [56, 56],"drawn": false},{"_id": "NjjWdevKVA0FNtXe","flags": {},"type": 0,"text": "Disposophobia – disposing of things","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [57, 57],"drawn": false},{"_id": "i1HzojuVDf58dBGq","flags": {},"type": 0,"text": "Traumatophobia – being injured","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [58, 58],"drawn": false},{"_id": "dgWWIl89qSPzuPA6","flags": {},"type": 0,"text": "Ophthalmophobia – being stared at","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [59, 59],"drawn": false},{"_id": "TuDmyHxlW2sx8gvh","flags": {},"type": 0,"text": "Megalophobia – large things","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [60, 60],"drawn": false},{"_id": "2YgsJL8EtRqdiNDY","flags": {},"type": 0,"text": "Phallophobia – a penis (esp. erect)","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [61, 61],"drawn": false},{"_id": "aYPlOrTO7jeDhy9d","flags": {},"type": 0,"text": "Angrophobia – anger/becoming angry","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [62, 62],"drawn": false},{"_id": "Dt4Ke80Rzt6p2AVR","flags": {},"type": 0,"text": "Defecaloesiophobia – bowel movements","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [63, 63],"drawn": false},{"_id": "u67FJNPnE7kk3HXw","flags": {},"type": 0,"text": "Anablephobia – looking up","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [64, 64],"drawn": false},{"_id": "CkIaQu9GdChQnmpN","flags": {},"type": 0,"text": "Eisoptrophobia – looking in mirrors","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [65, 65],"drawn": false},{"_id": "XrcjYl7Vg6FgSP0e","flags": {},"type": 0,"text": "Numerophobia – numbers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [66, 66],"drawn": false},{"_id": "Zkeaqfu11Rm8lxvp","flags": {},"type": 0,"text": "Phronemophobia – thinking","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [67, 67],"drawn": false},{"_id": "fggKQP51ixoTAT12","flags": {},"type": 0,"text": "Poinephobia – punishment","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [68, 68],"drawn": false},{"_id": "gnfHdwfODxzEfFrQ","flags": {},"type": 0,"text": "Pteronophobia – being tickled by feathers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [69, 69],"drawn": false},{"_id": "2od9jxBzuQkGd6Lp","flags": {},"type": 0,"text": "Ephebiphobia – teenagers","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [70, 70],"drawn": false},{"_id": "03ZnVA7xhsmUrLdt","flags": {},"type": 0,"text": "Dextrophobia – things on the right side of your body","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [71, 71],"drawn": false},{"_id": "bHPZcJjDRaXmQakJ","flags": {},"type": 0,"text": "Kathisophobia – sitting down","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [72, 72],"drawn": false},{"_id": "lp8RWGNagmrHQ6fv","flags": {},"type": 0,"text": "Leukophobia – the color white","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [73, 73],"drawn": false},{"_id": "6xDoDvi9VeZbKhcE","flags": {},"type": 0,"text": "Symmetrophobia – symmetry/symmetrical things","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [74, 74],"drawn": false},{"_id": "CKvJWSr7Is7kbzoS","flags": {},"type": 0,"text": "Pogonophobia – beards","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [75, 75],"drawn": false},{"_id": "vLEIkkRgEXlWhgDJ","flags": {},"type": 0,"text": "Heterophobia – the opposite sex","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [76, 76],"drawn": false},{"_id": "4MMP6WiEiBeEYbgT","flags": {},"type": 0,"text": "Dystychiphobia – accidents","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [77, 77],"drawn": false},{"_id": "ReUPVeaqcKj31Lrl","flags": {},"type": 0,"text": "Philemaphobia – kissing","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [78, 78],"drawn": false},{"_id": "B4AbLsrXaVW8lZAE","flags": {},"type": 0,"text": "Athazagoraphobia – being forgotten/ignored","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [79, 79],"drawn": false},{"_id": "dtoRIQtjfDowTtHm","flags": {},"type": 0,"text": "Ablutophobia – bathing/washing/cleaning","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [80, 80],"drawn": false},{"_id": "c9eqvw16YmXoWPBN","flags": {},"type": 0,"text": "Demonophobia – demons/fiends","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [81, 81],"drawn": false},{"_id": "fSOUWJYIwntprTmN","flags": {},"type": 0,"text": "Enochlophobia – crowds","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [82, 82],"drawn": false},{"_id": "dU4TJbCzZhoazXez","flags": {},"type": 0,"text": "Erythrophobia – the color red","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [83, 83],"drawn": false},{"_id": "OslKkgt7pQu3hSw5","flags": {},"type": 0,"text": "Melanophobia – the color black","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [84, 84],"drawn": false},{"_id": "x18MIfVOEnPHBcZW","flags": {},"type": 0,"text": "Necrophobia – death/the dead/corpses/undead","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [85, 85],"drawn": false},{"_id": "JEJijeFsZbeAapsb","flags": {},"type": 0,"text": "Oneirophobia – dreams","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [86, 86],"drawn": false},{"_id": "ho4x3veVPPFKaq4I","flags": {},"type": 0,"text": "Sexophobia – sexual organs/sexual activity","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [87, 87],"drawn": false},{"_id": "1urVDiCo85ccNb0U","flags": {},"type": 0,"text": "Teratophobia – disfigured people","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [88, 88],"drawn": false},{"_id": "4560T8BVK6OsbAur","flags": {},"type": 0,"text": "Aquaphobia – water/the sea/the ocean","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [89, 89],"drawn": false},{"_id": "5FwXojoHgQlWMyPh","flags": {},"type": 0,"text": "Taphophobia – tombs/graves","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [90, 90],"drawn": false},{"_id": "RlZ0Cdi8owO9du6y","flags": {},"type": 0,"text": "Herpetophobia – reptiles, amphibians or other similar animals.","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [91, 91],"drawn": false},{"_id": "aYgQxi5tEqy2g6Pz","flags": {},"type": 0,"text": "Teraphobia – monsters","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [92, 92],"drawn": false},{"_id": "5xpppzH1r5iOy3SV","flags": {},"type": 0,"text": "Maskaphobia – masks/costumes","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [93, 93],"drawn": false},{"_id": "KLxvtS2k0s4FmzVB","flags": {},"type": 0,"text": "Sciophobia – shadows","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [94, 94],"drawn": false},{"_id": "ieuJFmSGDUiwqCKI","flags": {},"type": 0,"text": "Mazeophobia – getting lost","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [95, 95],"drawn": false},{"_id": "qXOON3wgtdaGQ9sC","flags": {},"type": 0,"text": "Hamartophobia – sinning","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [96, 96],"drawn": false},{"_id": "HFXVeJO17HhXqjyn","flags": {},"type": 0,"text": "Oneirogmophobia – wet dreams","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [97, 97],"drawn": false},{"_id": "FjflQtcFclADbC36","flags": {},"type": 0,"text": "Gephyrophobia – bridges/crossing bridges","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [98, 98],"drawn": false},{"_id": "bKxgwCWstT3B0b7F","flags": {},"type": 0,"text": "Toxiphobia – being poisoned","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [99, 99],"drawn": false},{"_id": "3aVSjiHR3zUqX1qe","flags": {},"type": 0,"text": "Kosmikophobia – end of the world/grand disaster/cosmic phenomenon","img": "icons/svg/d20-black.svg","resultId": "","weight": 1, "range": [100, 100],"drawn": false}],"formula": "1d101","replacement": true,"displayRoll": true,"_id": "J5blsWNG9Y8RunYb"} 2 | --------------------------------------------------------------------------------