DnD Dice Roller

Calculates the hit and damage of any spell or attack action

Τι είναι το DnD Dice Roller;

Το DnD Dice Roller είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον troy.knapp, και η κύρια λειτουργία του είναι "Calculates the hit and damage of any spell or attack action".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης DnD Dice Roller

Λήψη αρχείων επέκτασης DnD Dice Roller σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Math isn't fun, blowing stuff up is fun. This extension gets you to the blowing stuff up bit a lot faster. 

DnD Dice Roller:

This extension expands the content on DnD Beyond. It handles all the annoying math that is involved with casting spells. For example, animate objects can take 10 attack and damage rolls... and if you have advantage, you get to watch the blank faces of your friends as you roll 20 attacks with 10 different damage rolls. The only thing you need to do is install the extension, navigate to D&D Beyond, then start pushing the casting buttons  

Features:

1) Anytime you cast a spell, a model pops up that reads the attack type, the damage dice needed, etc. and pops up a modal that visualizes your roll for you.
2) All rolls needed are displayed in parenthesis, so it's always transparent as to how all hit rolls or damage rolls are calculated.
3) Spell attacks are treated differently depending on the spell. For spells with saving roles (like disintegrate), the saving roll is displayed alongside the damage. For spells that hit no matter what (magic missle, cloud of daggers), only damage is calculated. For spells where you roll for a hit, your first roll is displayed as "default" and a filter bar allows you to select advantage/disadvantage.

Contribution:

This extension is completely open source, and I'm more than happy to look at any pull requests anyone wants to send me on github (see the website link).

Suggestions:

If you have any feature requests, or if you don't think I handled a spell correctly feel free to add an issue on the github page linked in the support tab.

I hope you enjoy this, it's already streamlined my play a lot.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα DnD Dice Roller DnD Dice Roller
ID mghkodngfmdaiakenmiphohejagphddf
Επίσημο URL https://chrome.google.com/webstore/detail/dnd-dice-roller/mghkodngfmdaiakenmiphohejagphddf
Περιγραφή Calculates the hit and damage of any spell or attack action
Μέγεθος Αρχείου 28.42 KB
Αριθμός Εγκαταστάσεων 881
Τρέχουσα Έκδοση 1.09
Τελευταία Ενημέρωση 2019-03-08
Ημερομηνία Δημοσίευσης 2019-03-08
Αξιολόγηση 4.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής troy.knapp
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ImIOImI/DnD
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/ImIOImI/DnD/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DnD Dice Roller",
    "description": "Calculates the hit and damage of any spell or attack action",
    "version": "1.09",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "images\/D20_16x16.png",
        "32": "images\/D20_32x32.png",
        "48": "images\/D20_48x48.png",
        "128": "images\/D20_128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.dndbeyond.com\/profile\/*\/characters\/*",
                "http:\/\/*.dndbeyond.com\/profile\/*\/characters\/*"
            ],
            "js": [
                "scripts\/lib\/arrive.min.js",
                "scripts\/entities\/Attack.js",
                "scripts\/factories\/ModalFactory.js",
                "scripts\/factories\/SpellFactory.js",
                "scripts\/factories\/ClickEventFactory.js",
                "scripts\/helpers\/roll.js",
                "scripts\/Index.js"
            ],
            "css": [
                "css\/index.css"
            ]
        }
    ]
}