mirror of
https://github.com/gregory-jagermeister/Fantasy-Content-Generator.git
synced 2026-07-22 07:30:31 +00:00
Changed call out and Renamed and Reorganised folders
This commit is contained in:
parent
7e48a2cfd2
commit
5896b12edf
7 changed files with 26 additions and 6 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -22,4 +22,4 @@ data.json
|
||||||
.DS_Store
|
.DS_Store
|
||||||
fantasy-content-generator.zip
|
fantasy-content-generator.zip
|
||||||
fantasy-content-generator
|
fantasy-content-generator
|
||||||
fantasy-content-generator/styles.css
|
fantasy-content-generator/styles.css
|
||||||
BIN
Obsidian_mrGSNRjLpe.gif
Normal file
BIN
Obsidian_mrGSNRjLpe.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 678 KiB |
24
README.md
24
README.md
|
|
@ -30,10 +30,30 @@ In the settings of the plugin you will Find settings and options to add your own
|
||||||
- Settlement Generator
|
- Settlement Generator
|
||||||
- Drink Generator
|
- Drink Generator
|
||||||
- Group Generator.
|
- Group Generator.
|
||||||
|
- Currency.
|
||||||
|
- Dungeon Generator.
|
||||||
|
|
||||||
|
## Inline Generator
|
||||||
|
|
||||||
|
If you found yourself needing a quick name for an Elf or really wanting a quick dungeon description then look no further then the Inline generator. You can activate this by using the Callout token (Default is set to '@', can be changed in settings)and scrolling through the list of generators possible.
|
||||||
|
|
||||||
|
### Example
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
currently the only settings are the Currency settings, enable them in the settings and add your own currency determining how frequently they appear in loot generated and what currencies you would like to include.
|
Below is a table for all the settings in this plugin
|
||||||
|
| Setting | Options |
|
||||||
|
| Reset | Click the Reset Button to return to defaults |
|
||||||
|
| Call Out | Modify the call out used when using the inline Generator|
|
||||||
|
| Currency | Enable Currency use in generation, How often it occurs and add type of currency with rarity. |
|
||||||
|
| Settlements | Modify an Array of both Prefixed and Suffixes that can be used to generate settlements.|
|
||||||
|
| Inn & Taverns | Modify Arrays of Prefixes, Types, Nouns, Descriptions and Rumors that will generate for Inns and Taverns.|
|
||||||
|
| Drinks | Modify an array of both adjectives and nouns that will be used for the drinks generator |
|
||||||
|
| Loot | Modify an array of both adjectives and nouns that will be used for the loot generator |
|
||||||
|
| Group | adjust the Adjectives, Nouns, Plural Nouns, Group Types and Single Descriptors for the group generator|
|
||||||
|
| Dungeon | adjust the Adjectives, Nouns, Locations, Dungeon types and Random Descriptions used by the Dungeon Generator.|
|
||||||
|
|
||||||
## TO-DO
|
## TO-DO
|
||||||
|
|
||||||
|
|
@ -43,6 +63,6 @@ currently the only settings are the Currency settings, enable them in the settin
|
||||||
- ~~Settlement Generator~~
|
- ~~Settlement Generator~~
|
||||||
- ~~Drink Generator~~
|
- ~~Drink Generator~~
|
||||||
- ~~Group Generator.~~
|
- ~~Group Generator.~~
|
||||||
- Randomization within a note.
|
- ~~Randomization within a note.~~
|
||||||
- Possibly more Generation type.
|
- Possibly more Generation type.
|
||||||
- Better UI
|
- Better UI
|
||||||
|
|
|
||||||
4
main.ts
4
main.ts
|
|
@ -1,6 +1,6 @@
|
||||||
import { GeneratorModal } from 'modal';
|
import { GeneratorModal } from 'editor/GeneratorModal';
|
||||||
import { MarkdownView, Notice, Plugin } from 'obsidian';
|
import { MarkdownView, Notice, Plugin } from 'obsidian';
|
||||||
import { InlineGeneratorSuggester } from "editor/AutoComplete";
|
import { InlineGeneratorSuggester } from "editor/InlineGenerator";
|
||||||
import { MyPluginSettings, possibleOptions } from 'settings/Datatypes';
|
import { MyPluginSettings, possibleOptions } from 'settings/Datatypes';
|
||||||
import { DEFAULT_SETTINGS } from 'settings/DefaultSetting';
|
import { DEFAULT_SETTINGS } from 'settings/DefaultSetting';
|
||||||
import { SettingTab } from 'settings/SettingsTab';
|
import { SettingTab } from 'settings/SettingsTab';
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue