{"id":20015235,"url":"https://github.com/freymaurer/dicacle","last_synced_at":"2025-05-04T22:31:29.986Z","repository":{"id":176731760,"uuid":"658584618","full_name":"Freymaurer/Dicacle","owner":"Freymaurer","description":"Free online dice roller based on text input.","archived":false,"fork":false,"pushed_at":"2024-04-04T21:49:56.000Z","size":1873,"stargazers_count":7,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-08T12:51:48.273Z","etag":null,"topics":["dice-roller","fable","pen-and-paper","tool","web-tool","website"],"latest_commit_sha":null,"homepage":"https://freymaurer.github.io/Dicacle/","language":"F#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Freymaurer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-26T05:17:55.000Z","updated_at":"2024-05-27T13:26:49.000Z","dependencies_parsed_at":"2024-04-01T23:23:08.181Z","dependency_job_id":"4eb5e090-ef28-4e9c-b2b9-abfde8fe340e","html_url":"https://github.com/Freymaurer/Dicacle","commit_stats":null,"previous_names":["freymaurer/dicacle"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Freymaurer%2FDicacle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Freymaurer%2FDicacle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Freymaurer%2FDicacle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Freymaurer%2FDicacle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Freymaurer","download_url":"https://codeload.github.com/Freymaurer/Dicacle/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252408260,"owners_count":21743083,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dice-roller","fable","pen-and-paper","tool","web-tool","website"],"created_at":"2024-11-13T07:45:25.304Z","updated_at":"2025-05-04T22:31:29.580Z","avatar_url":"https://github.com/Freymaurer.png","language":"F#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dicacle\n\n[Dicacle](https://freymaurer.github.io/Dicacle/), a free, online dice roller with text based input, dice roll storage and dice roll history! Perfect for pen'n'paper!\n\n## Scope\n\nMust support list (syntax taken from [DiceMaiden](https://github.com/Humblemonk/DiceMaiden#how-to-use)):\n\n- `3d6 + 1d11 + 15w20`: base case, roll any number of any sided dice.\n- `3d6 + 15`: add flat boni to dice rolls.\n\nSets:\n- `(1d20 + 14) (1d20 + 14) (1d20 + 9)`: roll 3 sets and only sum inside set.\n- `2 (1d20 + 14) (1d20 + 9)`: roll 2 sets of 1d20+14 and one of 1d20+9. \n\nFor one diceroll (e.g. `3d6`) you can mix between categories below but never multiples of the same category.\n\n- Not allowed: ~~`3d6 k2 kl2`~~\n- Allowed: `3d6 k1 ie6 r2`: roll 3d6, reroll any 1 or 2 once, explode rolled 6, then keep highest.\n\nOrder of execution: `Reroll` --\u003e `Explode` --\u003e `Keep/Drop`.\n\nKeep/Drop:\n- `3d6 k1`/`3d6 kh1`: roll 3d6, keep the best. Used for advantage.\n- `3d6 kl2`: roll and keep lowest 2 results.\n- `3d6 d1`/`3d6 dl1`: roll 3d6, drop the lowest.\n- `3d6 dh2`: roll 3d6, drop the highest 2 results.\n\nExplode:\n- `3d6 e6`: roll 3d6 and explode on six or higher __once__.\n- `3d6 ie6`: roll 3d6 and explode on six or higher indefinetly (max 100).\n\nReroll:\n- `3d6 r2`: reroll any die equal to 2 or below 2 __once__.\n- `3d6 ir2`: reroll any die equal to 2 or below 2 indefinetly (max 100).\n\n\n## Development\n\n### Requirements\n\n* [dotnet SDK](https://www.microsoft.com/net/download/core) v6.0 or higher\n* [node.js](https://nodejs.org) v18+ LTS\n\n### Setup\n\nBefore doing anything, start with installing npm dependencies using `npm install`.\n\nThen to start development mode with hot module reloading, run:\n```bash\nnpm start\n```\nThis will start the development server after compiling the project, once it is finished, navigate to http://localhost:5173 to view the application .\n\nTo build the application and make ready for production:\n```\nnpm run build\n```\nThis command builds the application and puts the generated files into the `deploy` directory (can be overwritten in webpack.config.js).\n\n### Color-Palette\n\nhttps://coolors.co/5b19d7-708d81-f4d58d-bf0603-8d0801\n\n### Tests\n\nTo run the tests using the command line, you have to use the mocha test runner which doesn't use the browser but instead runs the code using node.js:\n```\nnpm test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreymaurer%2Fdicacle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffreymaurer%2Fdicacle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreymaurer%2Fdicacle/lists"}